stream method
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;
}
Returns of a Stream of values emitted by the Computable. The stream begins with the current value of the computable.
Stream<T> stream() {
if (_controller == null) {
_initController();
}
return _stream;
}