BubbleStyle constructor

const BubbleStyle({
  1. double? userBubbleMaxWidth,
  2. double? aiBubbleMaxWidth,
  3. double? userBubbleMinWidth,
  4. double? aiBubbleMinWidth,
  5. Color? userBubbleColor,
  6. Color? aiBubbleColor,
  7. Color? userNameColor,
  8. Color? aiNameColor,
  9. Color? copyIconColor,
  10. double? userBubbleTopLeftRadius,
  11. double? userBubbleTopRightRadius,
  12. double? aiBubbleTopLeftRadius,
  13. double? aiBubbleTopRightRadius,
  14. double? bottomLeftRadius,
  15. double? bottomRightRadius,
  16. bool enableShadow = true,
  17. double? shadowOpacity,
  18. double? shadowBlurRadius,
  19. Offset? shadowOffset,
})

Implementation

const BubbleStyle({
  this.userBubbleMaxWidth,
  this.aiBubbleMaxWidth,
  this.userBubbleMinWidth,
  this.aiBubbleMinWidth,
  this.userBubbleColor,
  this.aiBubbleColor,
  this.userNameColor,
  this.aiNameColor,
  this.copyIconColor,
  this.userBubbleTopLeftRadius,
  this.userBubbleTopRightRadius,
  this.aiBubbleTopLeftRadius,
  this.aiBubbleTopRightRadius,
  this.bottomLeftRadius,
  this.bottomRightRadius,
  this.enableShadow = true,
  this.shadowOpacity,
  this.shadowBlurRadius,
  this.shadowOffset,
});