AwesomeTheme constructor

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

Implementation

AwesomeTheme({
  AwesomeButtonTheme? buttonTheme,
  Color? bottomActionsBackgroundColor,
})  : buttonTheme = buttonTheme ?? AwesomeButtonTheme(),
      bottomActionsBackgroundColor =
          bottomActionsBackgroundColor ?? Colors.black54;