forward method
Forwards a stream to this one
Implementation
void forward(Stream<T> from) {
registerDisposer(from.listen((data) {
this.update(data);
}, cancelOnError: false).cancel);
}
Forwards a stream to this one
void forward(Stream<T> from) {
registerDisposer(from.listen((data) {
this.update(data);
}, cancelOnError: false).cancel);
}