RangeValue constructor

const RangeValue(
  1. double start,
  2. double? end, {
  3. String title = ' ',
})

Implementation

const RangeValue(
  this.start,
  this.end, {
  this.title = ' ',
});