stream property

Stream<T?> stream
inherited

Broadcast Stream to which all builders listen

This stream is created only when there is a listener, and is automatically cleaned when there are no listeners are left. State change broadcasts are discarded when there are no listeners.

Implementation

Stream<S?> get stream {
  _monitor.onStreamListener(this);

  if (_stream == null) {
    onActivate();
  }

  return _stream!.stream;
}