bindStream method
Binds an existing Stream<T> to this Rx
Implementation
void bindStream(Stream<T> stream) {
final sub = stream.listen((va) => value = va);
reportAdd(sub.cancel);
}
Binds an existing Stream<T> to this Rx
void bindStream(Stream<T> stream) {
final sub = stream.listen((va) => value = va);
reportAdd(sub.cancel);
}