CustomSliderColors constructor

CustomSliderColors({
  1. Color? trackColor,
  2. Color? progressBarColor,
  3. List<Color>? progressBarColors,
  4. double? gradientStartAngle,
  5. double? gradientEndAngle,
  6. List<Color>? trackColors,
  7. double? trackGradientStartAngle,
  8. double? trackGradientEndAngle,
  9. bool? hideShadow,
  10. Color? shadowColor,
  11. double? shadowMaxOpacity,
  12. double? shadowStep,
  13. Color? dotColor,
  14. bool dynamicGradient = false,
})

Implementation

CustomSliderColors(
    {this.trackColor,
    this.progressBarColor,
    this.progressBarColors,
    this.gradientStartAngle,
    this.gradientEndAngle,
    this.trackColors,
    this.trackGradientStartAngle,
    this.trackGradientEndAngle,
    this.hideShadow,
    this.shadowColor,
    this.shadowMaxOpacity,
    this.shadowStep,
    this.dotColor,
    this.dynamicGradient = false});