whereNotNull method

Iterable<T> whereNotNull()

Implementation

Iterable<T> whereNotNull() => where((e) => e != null).map((e) => e!);