whereNotNull method

Stream<T> whereNotNull()

Implementation

Stream<T> whereNotNull() => where((event) => event != null).cast<T>();