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