DialKnob constructor

const DialKnob({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double> onChanged,
  4. double min = 0,
  5. double max = 1,
  6. double size = 72,
  7. Widget? child,
  8. Color? trackColor,
  9. Color? levelColorStart,
  10. Color? levelColorEnd,
  11. Color? levelColor,
  12. Color? knobColor,
  13. Color? indicatorColor,
})

Implementation

const DialKnob({
  super.key,
  required this.value,
  required this.onChanged,
  this.min = 0,
  this.max = 1,
  this.size = 72,
  this.child,
  this.trackColor,
  this.levelColorStart,
  this.levelColorEnd,
  this.levelColor,
  this.knobColor,
  this.indicatorColor,
});