stream method

Stream<T> stream()

Returns of a Stream of values emitted by the Computable. The stream begins with the current value of the computable.

Implementation

Stream<T> stream() {
  if (_controller == null) {
    _initController();
  }
  return _stream;
}