whereNone method

Future<Iterable<None<T>>> whereNone()

Awaits all futures and then filters for None elements.

Implementation

@pragma('vm:prefer-inline')
Future<Iterable<None<T>>> whereNone() =>
    Future.wait(this).then((e) => e.whereNone());