merge method

Merges this HelpButtonThemeData with another.

Implementation

HelpButtonThemeData merge(HelpButtonThemeData? other) {
  if (other == null) return this;
  return copyWith(
    color: other.color,
    disabledColor: other.disabledColor,
  );
}