firstWhere method
Refer to Iterable.firstWhere;
Implementation
Future<E> firstWhere(bool test(E e), {E Function()? orElse}) async {
return (await this).firstWhere(test, orElse: orElse);
}
Refer to Iterable.firstWhere;
Future<E> firstWhere(bool test(E e), {E Function()? orElse}) async {
return (await this).firstWhere(test, orElse: orElse);
}