whereNotNull method

List<T> whereNotNull()

Implementation

List<T> whereNotNull() => (this ?? []).where(notNull).cast<T>().toList();