merge method

Implementation

AppKitCircularSliderThemeData merge(AppKitCircularSliderThemeData? other) {
  if (other == null) return this;
  return copyWith(
    backgroundColor: other.backgroundColor,
    thumbColor: other.thumbColor,
    thumbColorUnfocused: other.thumbColorUnfocused,
  );
}