whereNotNull method

Iterable<T> whereNotNull()

Implementation

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