nonNullValues property

  1. @override
Stream<T?> get nonNullValues
override

A Stream of all non-null values on this view, including the current value at the time the stream is listened to (if it's non-null).

This implementation will never emit equal consecutive data events. "Equality" is defined by equalsFn.

Implementation

@override
Stream<T?> get nonNullValues => super.nonNullValues.distinct(_equalsFn);