stream property
Returns a stream that emits all of the updates to the value held by the StateBloc
,
starting with the current value.
Implementation
Stream<T?> get stream {
return _stateStream;
}
Returns a stream that emits all of the updates to the value held by the StateBloc
,
starting with the current value.
Stream<T?> get stream {
return _stateStream;
}