SliderTheme constructor

const SliderTheme({
  1. double? trackHeight,
  2. Color? trackColor,
  3. Color? valueColor,
  4. Color? disabledTrackColor,
  5. Color? disabledValueColor,
  6. Color? thumbColor,
  7. Color? thumbBorderColor,
  8. Color? thumbFocusedBorderColor,
  9. double? thumbSize,
})

Creates a SliderTheme.

Implementation

const SliderTheme({
  this.trackHeight,
  this.trackColor,
  this.valueColor,
  this.disabledTrackColor,
  this.disabledValueColor,
  this.thumbColor,
  this.thumbBorderColor,
  this.thumbFocusedBorderColor,
  this.thumbSize,
});