changes property
Returns a stream that emits all of changes to the value of the StateBloc
as a
StateChangeTuple
containing the StateChangeTuple.current
and StateChangeTuple.previous
value.
Implementation
Stream<StateChangeTuple<T?>> get changes {
return _stateChangeStream;
}