mapNotNull<R> method
Implementation
Stream<R> mapNotNull<R>(R? Function(T) transform) =>
map(transform).where((e) => e != null).cast<R>();
Stream<R> mapNotNull<R>(R? Function(T) transform) =>
map(transform).where((e) => e != null).cast<R>();