bindStream method

void bindStream(
  1. Stream<T> stream
)

Replace the current source stream with a new one.

Implementation

void bindStream(Stream<T> stream) {
  unbind();
  _bind(stream, isInitial: false);
}