whereNotNull method

Stream<T> whereNotNull()

Implementation

Stream<T> whereNotNull() => where((e) => e != null);