whereAsync method

Iterable<Async<T>> whereAsync()

Implementation

Iterable<Async<T>> whereAsync() {
  return where((e) => e.isAsync()).map((e) => e.async().unwrap());
}