SliderKnobWidget constructor

const SliderKnobWidget({
  1. Key? key,
  2. String? label,
  3. double? value,
  4. double? min,
  5. double? max,
})

Implementation

const SliderKnobWidget({
  Key? key,
  this.label,
  this.value,
  this.min,
  this.max,
}) : super(key: key);