DoubleRange constructor

DoubleRange({
  1. double? from,
  2. double? to,
})

Implementation

DoubleRange({
  this.from,
  this.to,
});