where method

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

Implementation

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