copyWith method
Implementation
SearchFieldLookAndFeel copyWith({String? backgroundColor, String? color}) {
return SearchFieldLookAndFeel(
backgroundColor: backgroundColor ?? this.backgroundColor,
color: color ?? this.color,
);
}
SearchFieldLookAndFeel copyWith({String? backgroundColor, String? color}) {
return SearchFieldLookAndFeel(
backgroundColor: backgroundColor ?? this.backgroundColor,
color: color ?? this.color,
);
}