RangeComponent constructor

const RangeComponent({
  1. double initialValue = 50,
  2. double min = 0,
  3. double max = 100,
  4. int? divisions,
  5. Color? primaryColor,
  6. Color? valueIndicatorColor,
  7. dynamic onChanged(
    1. double
    )?,
  8. IconData? thumbIconData,
  9. bool showTooltip = true,
  10. ValueIndicatorType valueIndicatorType = ValueIndicatorType.tooltip,
  11. Key? key,
})

Implementation

const RangeComponent(
    {this.initialValue = 50,
    this.min = 0,
    this.max = 100,
    this.divisions,
    this.primaryColor,
    this.valueIndicatorColor,
    this.onChanged,
    this.thumbIconData,
    this.showTooltip = true,
    this.valueIndicatorType = ValueIndicatorType.tooltip,
    Key? key})
    : super(key: key);