Range constructor

const Range({
  1. Quantity? low,
  2. Quantity? high,
})

Implementation

const factory Range({
  Quantity? low,
  Quantity? high,
}) = _Range;