bindValue<T> function

Binder<T> bindValue<T>(
  1. ValueBuilder<T> fn, {
  2. ErrorBuilder<T>? catchError,
  3. Equals<T>? equals,
  4. DisposeCallback<T>? dispose,
})

Implementation

Binder<T> bindValue<T>(
  ValueBuilder<T> fn, {
  ErrorBuilder<T>? catchError,
  Equals<T>? equals,
  DisposeCallback<T>? dispose,
}) =>
    ValueBinder(
      fn,
      key: T,
      catchError: catchError,
      equals: equals,
      dispose: dispose,
    );