DistinctValueStream<T> typedef

  1. @Deprecated("Use StateStream from 'rxdart_ext' package instead. This package is deprecated!")
DistinctValueStream<T> = StateStream<T>

An Stream that provides synchronous access to the last emitted item, and two consecutive values are not equal. The equality between previous data event and current data event is determined by equals.

Implementation

@Deprecated(
    "Use StateStream from 'rxdart_ext' package instead. This package is deprecated!")
typedef DistinctValueStream<T> = StateStream<T>;