getNonNull method

List<T> getNonNull()

Implementation

List<T> getNonNull() {
  return where((e) => e != null).map((e) => e!).toList();
}