ValueState<T> constructor

const ValueState<T>({
  1. T? primary,
  2. T? secondary,
  3. T? ternary,
  4. T? disable,
  5. T? error,
  6. T? hover,
  7. T? valid,
})

Implementation

const ValueState({
  this.primary,
  this.secondary,
  this.ternary,
  this.disable,
  this.error,
  this.hover,
  this.valid,
});