Range constructor

const Range(
  1. int start,
  2. int end
)

Implementation

const Range(this.start, this.end) : assert(start <= end, 'Start: $start End: $end');