RangeValidator constructor

RangeValidator({
  1. double? min,
  2. double? max,
})

Implementation

RangeValidator({
  this.min,
  this.max,
});