where method

Future<Iterable<E>> where(
  1. bool test(
    1. E e
    )
)

Refer to Iterable.where;

Implementation

Future<Iterable<E>> where(bool test(E e)) async {
  return (await this).where(test);
}