CustomSlider constructor

const CustomSlider(
  1. {Key? key,
  2. String? text,
  3. Color? textColor,
  4. Color? inactiveColor,
  5. Color? valueIndicatorColor,
  6. Color? valueTextIndicatorColor,
  7. double? min,
  8. double? max,
  9. String? label,
  10. double? value,
  11. void onChanged(
    1. double
    )?}
)

Implementation

const CustomSlider({
  Key? key,
  this.text,
  this.textColor,
  this.inactiveColor,
  this.valueIndicatorColor,
  this.valueTextIndicatorColor,
  this.min,
  this.max,
  this.label,
  this.value,
  this.onChanged,
}) : super(key: key);