PairDoubleOption constructor

const PairDoubleOption(
  1. String name, {
  2. double? min,
  3. double? max,
  4. double? step,
  5. String? short,
  6. String? description,
})

Implementation

const new(
  super.name, {
  this.min,
  this.max,
  this.step,
  super.short,
  super.description,
});