containsWhere method

List<E> containsWhere(
  1. bool f(
    1. E e
    )
)

Implementation

List<E> containsWhere(bool Function(E e) f) {
  return where((element) => f(element)).toList();
}