ThumbSliderComponentShape constructor

const ThumbSliderComponentShape({
  1. required double thumbRadius,
  2. double min = 0,
  3. double max = 10,
  4. IconData? thumbIconData,
})

Implementation

const ThumbSliderComponentShape({
  required this.thumbRadius,
  this.min = 0,
  this.max = 10,
  this.thumbIconData,
});