bindStream method
Replace the current source stream with a new one.
Implementation
void bindStream(Stream<T> stream) {
unbind();
_bind(stream, isInitial: false);
}
Replace the current source stream with a new one.
void bindStream(Stream<T> stream) {
unbind();
_bind(stream, isInitial: false);
}