IntegerSliderEditorWidget constructor

const IntegerSliderEditorWidget({
  1. Key? key,
  2. required ParamValue<int> value,
  3. int min = 0,
  4. int max = 100,
  5. int step = 1,
})

Implementation

const IntegerSliderEditorWidget({
  super.key,
  required this.value,
  this.min = 0,
  this.max = 100,
  this.step = 1,
});