copyWith method
Implementation
SBBSliderStyle copyWith({
Color? activeTrackColor,
Color? inactiveTrackColor,
Color? thumbColor,
Color? thumbBorderColor,
Color? thumbBackgroundColor,
Color? iconColor,
Color? disabledIconColor,
}) =>
SBBSliderStyle(
activeTrackColor: activeTrackColor ?? this.activeTrackColor,
inactiveTrackColor: inactiveTrackColor ?? this.inactiveTrackColor,
thumbColor: thumbColor ?? this.thumbColor,
thumbBorderColor: thumbBorderColor ?? this.thumbBorderColor,
iconColor: iconColor ?? this.iconColor,
disabledIconColor: disabledIconColor ?? this.disabledIconColor,
);