whereNotNull method
Returns a copy without null values (for nullable types)
Implementation
Iterable<T> whereNotNull() => where((e) => e != null);
Returns a copy without null values (for nullable types)
Iterable<T> whereNotNull() => where((e) => e != null);