IntRange constructor

IntRange({
  1. String? max,
  2. String? min,
})

Implementation

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