where method

FutureOr<Iterable<T>> where(
  1. Predicate<T> predicate
)

Implementation

FutureOr<Iterable<T>> where(Predicate<T> predicate) async {
  return (await this).where(predicate);
}