stream property

Stream<T> get stream

Implementation

Stream<T> get stream {
  return _latestValue != null ? _controller.stream.newStreamWithInitialValue(_latestValue!) : _controller.stream;
}