where method

Iterable<E> where(
  1. bool f(
    1. dynamic element
    )
)

Implementation

Iterable<E> where(bool Function(dynamic element) f) =>
    toIterable()!.where(f) as Iterable<E>;