$DoubleRange constructor

$DoubleRange({
  1. double? end,
  2. double? start,
})

Implementation

$DoubleRange({
  this.end,
  this.start,
});