DoubleSliderEditorWidget constructor

const DoubleSliderEditorWidget({
  1. Key? key,
  2. required ParamValue<double> value,
  3. double min = 0.0,
  4. double max = 1.0,
  5. double step = 0.1,
})

Implementation

const DoubleSliderEditorWidget({
  super.key,
  required this.value,
  this.min = 0.0,
  this.max = 1.0,
  this.step = 0.1,
});