SettingsSliderTileIos constructor

SettingsSliderTileIos({
  1. required Function onChanged,
  2. required double value,
  3. String? title,
  4. Icon? leadingIcon,
  5. Icon? trailingIcon,
  6. double max = 1,
  7. double min = 0,
  8. Color? activeColor,
  9. int? division,
  10. Key? key,
})

Implementation

SettingsSliderTileIos(
    {required this.onChanged,
    required this.value,
    this.title,
    this.leadingIcon,
    this.trailingIcon,
    this.max = 1,
    this.min = 0,
    this.activeColor,
    this.division,
    Key? key})
    : super(key: key);