forwardStream method
Forwards the values emitted by the stream onto this computable.
Implementation
void forwardStream(Stream<T> stream) {
_addDependency(Computable.fromStream(stream, initialValue: get()));
}
Forwards the values emitted by the stream onto this computable.
void forwardStream(Stream<T> stream) {
_addDependency(Computable.fromStream(stream, initialValue: get()));
}