in working/macros/example/data_class.dart [278:283]
T? firstWhereOrNull(bool Function(T element) test) { for (var item in this) { if (test(item)) return item; } return null; }