firstWhere<E> function

E? firstWhere<E>(
  1. Iterable<E> list,
  2. bool test(
    1. E element
    )
)

Implementation

E? firstWhere<E>(
  Iterable<E> list,
  bool Function(E element) test,
) {
  for (E element in list) {
    if (test(element)) return element;
  }
  return null;
}