CuReSlider constructor

const CuReSlider({
  1. Key? key,
  2. dynamic onChanged(
    1. double
    )?,
  3. double? value,
  4. double? min,
  5. double? max,
  6. Color? thumbColor,
  7. Color? activeColor,
})

Implementation

const CuReSlider({
  super.key,
  this.onChanged,
  this.value,
  this.min,
  this.max,
  this.thumbColor,
  this.activeColor,
});