Range constructor

Range({
  1. required int low,
  2. required int high,
})

Implementation

Range({required this.low, required this.high}) {
  assert(low <= high);
}