ChatBotTheme constructor

const ChatBotTheme({
  1. Color? backgroundColor,
  2. Color? userMessageColor,
  3. Color? botMessageColor,
  4. Color? userMessageTextColor,
  5. Color? botMessageTextColor,
  6. Color? sendButtonColor,
  7. Color? textFieldBorderColor,
  8. Color? predefinedButtonColor,
  9. Color? predefinedButtonTextColor,
  10. TextStyle? titleTextStyle,
  11. TextStyle? messageTextStyle,
  12. InputDecoration? textFieldDecoration,
  13. IconData? sendIcon,
  14. BoxDecoration? predefinedButtonDecoration,
  15. TextStyle? predefinedButtonTextStyle,
  16. Color? predefinedButtonBorderColor,
  17. double? predefinedButtonBorderRadius,
  18. EdgeInsetsGeometry? predefinedButtonPadding,
  19. Color? predefinedContainerBorderColor,
  20. Color? pageAppBarBgColor,
  21. TextStyle? pageAppBarTextStyle,
})

Implementation

const ChatBotTheme({
  this.backgroundColor,
  this.userMessageColor,
  this.botMessageColor,
  this.userMessageTextColor,
  this.botMessageTextColor,
  this.sendButtonColor,
  this.textFieldBorderColor,
  this.predefinedButtonColor,
  this.predefinedButtonTextColor,
  this.titleTextStyle,
  this.messageTextStyle,
  this.textFieldDecoration,
  this.sendIcon,
  this.predefinedButtonDecoration,
  this.predefinedButtonTextStyle,
  this.predefinedButtonBorderColor,
  this.predefinedButtonBorderRadius,
  this.predefinedButtonPadding,
  this.predefinedContainerBorderColor,

  this.pageAppBarBgColor,
  this.pageAppBarTextStyle
});