where method

Iterable<T> where(
  1. bool function(
    1. T
    )
)

Returns a new lazy Iterable with all elements that satisfy the predicate function.

Implementation

Iterable<T> where(bool Function(T) function) => value.where(function);