whereNotNull method

Iterable<T> whereNotNull()

Implementation

Iterable<T> whereNotNull() => where((element) => element != null).cast<T>();