bindStream<T> function

Binder<T> bindStream<T>(
  1. BindValueBuilder<Stream<T>> fn, {
  2. T? pendingValue,
  3. ErrorBuilder<T>? catchError,
  4. Equals<T>? equals,
  5. DisposeCallback<T>? dispose,
  6. String? name,
})

Implementation

Binder<T> bindStream<T>(
  BindValueBuilder<Stream<T>> fn, {
  T? pendingValue,
  ErrorBuilder<T>? catchError,
  Equals<T>? equals,
  DisposeCallback<T>? dispose,
  String? name,
}) =>
    StreamBinder(
      (locator, __, ___) => fn(locator),
      key: T,
      pendingValue: pendingValue,
      catchError: catchError,
      equals: equals,
      dispose: dispose,
      name: name,
    );