copyWith method

AwesomeTheme copyWith({
  1. AwesomeButtonTheme? buttonTheme,
  2. Color? bottomActionsBackgroundColor,
})

Implementation

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