whereNotNull property

Iterable<E> whereNotNull

Returns an Iterable containing all elements that are not null.

Implementation

Iterable<E> get whereNotNull =>
    whereNot((element) => element == null).cast<E>();