SubRange constructor

const SubRange(
  1. int low,
  2. int high
)

Implementation

const SubRange(this.low, this.high) : length = 1 + high - low;