S360fSlider constructor

const S360fSlider({
  1. required double max,
  2. required double min,
  3. required double value,
  4. Decoration? boxDecoration,
  5. void onChanged(
    1. double
    )?,
  6. void onChangeEnd(
    1. double
    )?,
  7. Color? activeColor,
  8. Color? inactiveColor,
  9. Key? key,
})

Implementation

const S360fSlider({
  required this.max,
  required this.min,
  required this.value,
  this.boxDecoration,
  this.onChanged,
  this.onChangeEnd,
  this.activeColor,
  this.inactiveColor,
  super.key,
});