PluginSlider constructor

PluginSlider({
  1. Key? key,
  2. required double value,
  3. String? label,
  4. int? divisions,
  5. double max = 1.0,
  6. double min = 0.0,
  7. bool enabled = true,
  8. dynamic onChanged(
    1. double
    )?,
})

Implementation

PluginSlider(
    {Key? key,
    required this.value,
    this.label,
    this.divisions,
    this.max = 1.0,
    this.min = 0.0,
    this.enabled = true,
    this.onChanged})
    : super(key: key);