copyWith method

SearchFieldLookAndFeel copyWith({
  1. String? backgroundColor,
  2. String? color,
})

Implementation

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