Range constructor

const Range({
  1. int? minValue,
  2. int? maxValue,
})

Implementation

const Range({
  this.minValue,
  this.maxValue,
});