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