removeNulls property

Iterable<T> get removeNulls

Implementation

Iterable<T> get removeNulls => where((T? e) => e != null).map((T? e) => e!);