firstWhereOrNull method
Implementation
dynamic firstWhereOrNull(BuildContext context, List<dynamic> list, int loop) {
return list.firstWhereOrNull(
(e) => condition.getValue(context, () => true, () => false, loop, e));
}
dynamic firstWhereOrNull(BuildContext context, List<dynamic> list, int loop) {
return list.firstWhereOrNull(
(e) => condition.getValue(context, () => true, () => false, loop, e));
}