whereNotNull<R extends Object> method
Emits only non-null values, narrowing the type to R.
Implementation
Stream<R> whereNotNull<R extends Object>() =>
where((e) => e != null).cast<R>();
Emits only non-null values, narrowing the type to R.
Stream<R> whereNotNull<R extends Object>() =>
where((e) => e != null).cast<R>();