thumbTheme static method

SliderThemeData thumbTheme({
  1. Color? color,
  2. Color? disabled,
  3. Thumb? selector(
    1. TextDirection,
    2. RangeValues,
    3. double,
    4. Size,
    5. Size,
    6. double,
    )?,
  4. SliderComponentShape? shape,
  5. double? minSeparation,
  6. RangeSliderThumbShape? rangeShape,
})

Implementation

static SliderThemeData thumbTheme({
  Color? color,
  Color? disabled,
  Thumb? Function(TextDirection, RangeValues, double, Size, Size, double)?
      selector,
  SliderComponentShape? shape,
  double? minSeparation,
  RangeSliderThumbShape? rangeShape,
}) =>
    SliderThemeData(
      thumbColor: color,
      disabledThumbColor: disabled,
      thumbSelector: selector,
      thumbShape: shape,
      minThumbSeparation: minSeparation,
      rangeThumbShape: rangeShape,
    );