whereNotNull property

Iterable<TValue> whereNotNull

ensure null-safety in iterable

Implementation

Iterable<TValue> get whereNotNull => where(notNull).map((e) => e!);