merge method

Merges this MacosIconButtonThemeData with another.

Implementation

MacosIconButtonThemeData merge(MacosIconButtonThemeData? other) {
  if (other == null) return this;
  return copyWith(
    backgroundColor: other.backgroundColor,
    disabledColor: other.disabledColor,
    hoverColor: other.hoverColor,
    shape: other.shape,
    borderRadius: other.borderRadius,
    boxConstraints: other.boxConstraints,
    padding: other.padding,
  );
}