NiceKnob constructor

const NiceKnob({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double> onChanged,
  4. double min = 0,
  5. double max = 100,
  6. double size = 80,
  7. String? label,
  8. Color? color,
  9. String formatValue(
    1. double
    )?,
})

Implementation

const NiceKnob({
  super.key,
  required this.value,
  required this.onChanged,
  this.min = 0,
  this.max = 100,
  this.size = 80,
  this.label,
  this.color,
  this.formatValue,
});