ChatTheme constructor

const ChatTheme({
  1. Color? userBubbleColor,
  2. Color? botBubbleColor,
  3. TextStyle? userTextStyle,
  4. TextStyle? botTextStyle,
  5. BoxDecoration? userBubbleDecoration,
  6. BoxDecoration? botBubbleDecoration,
  7. InputDecoration? inputDecoration,
  8. Color? sendButtonColor,
  9. Color? sendButtonDisabledColor,
  10. Color? loadingIndicatorColor,
  11. Color? backgroundColor,
  12. BorderRadius? userBubbleBorderRadius,
  13. BorderRadius? botBubbleBorderRadius,
})

Implementation

const ChatTheme({
  this.userBubbleColor,
  this.botBubbleColor,
  this.userTextStyle,
  this.botTextStyle,
  this.userBubbleDecoration,
  this.botBubbleDecoration,
  this.inputDecoration,
  this.sendButtonColor,
  this.sendButtonDisabledColor,
  this.loadingIndicatorColor,
  this.backgroundColor,
  this.userBubbleBorderRadius,
  this.botBubbleBorderRadius,
});