merge method

Merges this MacosSearchFieldThemeData with another.

Implementation

MacosSearchFieldThemeData merge(MacosSearchFieldThemeData? other) {
  if (other == null) return this;
  return copyWith(
    highlightColor: other.highlightColor,
    resultsBackgroundColor: other.resultsBackgroundColor,
  );
}