filterNotNull method

Iterable<T> filterNotNull()

Returns a new lazy Iterable with all elements which are not null.

Implementation

Iterable<T> filterNotNull() => where((element) => element != null);