exceptNull method

Iterable<T> exceptNull()

Returns a new Iterable with all elements that are not null.

Implementation

Iterable<T> exceptNull() => where((x) => x != null).cast();