valueStream property

Stream<T> get valueStream

Returns the raw stream of values, unwrapped from LxStatus.

Implementation

Stream<T> get valueStream {
  if (_boundSourceStream == null) {
    throw StateError('No source stream bound or stream has been closed.');
  }
  return _boundSourceStream!;
}