filterNotNull method

List<T> filterNotNull()

Implementation

List<T> filterNotNull() => List<T>.from(where((e) => e != null));