NumberValidatorConfig constructor

const NumberValidatorConfig({
  1. int? min,
  2. int? max,
})

Implementation

const NumberValidatorConfig({
  this.min,
  this.max,
}) : super(type: ValidatorType.number);