ValueRange constructor

const ValueRange(
  1. double start,
  2. double end,
  3. int index,
  4. bool isFirst,
  5. bool isLast,
  6. bool isEven,
  7. bool isOdd,
)

Implementation

const ValueRange(
  this.start,
  this.end,
  this.index,
  this.isFirst,
  this.isLast,
  this.isEven,
  this.isOdd,
);