forwardStream method

void forwardStream(
  1. Stream<T> stream
)

Forwards the values emitted by the stream onto this computable.

Implementation

void forwardStream(Stream<T> stream) {
  _addDependency(Computable.fromStream(stream, initialValue: get()));
}