copyWith method

MacosSearchFieldThemeData copyWith({
  1. Color? highlightColor,
  2. Color? resultsBackgroundColor,
})

Copied one MacosSearchFieldThemeData to another.

Implementation

MacosSearchFieldThemeData copyWith({
  Color? highlightColor,
  Color? resultsBackgroundColor,
}) {
  return MacosSearchFieldThemeData(
    highlightColor: highlightColor ?? this.highlightColor,
    resultsBackgroundColor:
        resultsBackgroundColor ?? this.resultsBackgroundColor,
  );
}