merge method

Merges this MacosPopupButtonThemeData with another.

Implementation

MacosPopupButtonThemeData merge(MacosPopupButtonThemeData? other) {
  if (other == null) return this;
  return copyWith(
    highlightColor: other.highlightColor,
    backgroundColor: other.backgroundColor,
    popupColor: other.popupColor,
  );
}