stream property

Stream<T> get stream

A stream of $s that gets updated everytime the internal value is changed.

Implementation

Stream<T> get stream {
  _controller ??= StreamController.broadcast();
  return _controller!.stream;
}