RangeValidator<T extends num> constructor

const RangeValidator<T extends num>(
  1. T min,
  2. T max, {
  3. bool inclusive = true,
  4. String? message,
})

Implementation

const RangeValidator(this.min, this.max,
    {this.inclusive = true, this.message});