whereNonNull method

List<E> whereNonNull()

Implementation

List<E> whereNonNull() => where((it) => it != null).cast<E>().toList();