ValueBinder<T> constructor

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

Implementation

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