Range<T> constructor

const Range<T>({
  1. T? minValue,
  2. T? maxValue,
})

Implementation

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