whereNotNull method

Iterable<T> whereNotNull()

Returns a copy without null values (for nullable types)

Implementation

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