SliderThumbShape constructor

const SliderThumbShape({
  1. double enabledThumbRadius = 10.0,
  2. double? disabledThumbRadius,
  3. double elevation = 1.0,
  4. double pressedElevation = 6.0,
  5. bool useBall = true,
  6. double innerFactor = 1.0,
  7. Color borderColor = Colors.transparent,
})

Create a fluent-styled slider thumb;

Implementation

const SliderThumbShape({
  this.enabledThumbRadius = 10.0,
  this.disabledThumbRadius,
  this.elevation = 1.0,
  this.pressedElevation = 6.0,
  this.useBall = true,
  this.innerFactor = 1.0,
  this.borderColor = Colors.transparent,
});