withoutNulls property

List<T> withoutNulls

Implementation

List<T> get withoutNulls => where((s) => s != null).map((e) => e!).toList();