ValueBinder<T> constructor

const ValueBinder<T>(
  1. ValueBuilder<T> fn, {
  2. required Object key,
  3. ErrorBuilder<T>? catchError,
  4. Equals<T>? equals,
  5. DisposeCallback<T>? dispose,
})

Implementation

const ValueBinder(
  this.fn, {
  required this.key,
  this.catchError,
  this.equals,
  this.dispose,
});