copyWith method
Implementation
AwesomeTheme copyWith({
AwesomeButtonTheme? buttonTheme,
Color? bottomActionsBackgroundColor,
}) {
return AwesomeTheme(
buttonTheme: buttonTheme ?? this.buttonTheme,
bottomActionsBackgroundColor:
bottomActionsBackgroundColor ?? this.bottomActionsBackgroundColor,
);
}