where method

  1. @override
Iterable<E> where(
  1. bool test(
    1. E element
    )
)
override

Returns an iterable containing elements that satisfy the given test.

This is a non-mutating operation that returns an iterable.

Implementation

@override
Iterable<E> where(bool Function(E element) test) => value.where(test);