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