merge method

Merges the theme data SliderThemeData.

Implementation

SliderThemeData merge(SliderThemeData? other) {
  if (other == null) {
    return this;
  }
  return copyWith(
    disabledColor: other.disabledColor,
    activeColor: other.activeColor,
    activeHoverColor: other.activeHoverColor,
    trackColor: other.trackColor,
    hightlightColor: other.hightlightColor,
  );
}