CupMessageBubble constructor

const CupMessageBubble({
  1. Key? key,
  2. required String message,
  3. required bool isFromUser,
  4. Color? cupColor,
  5. Color? textColor,
  6. bool showDecorations = true,
})

Implementation

const CupMessageBubble({
  super.key,
  required this.message,
  required this.isFromUser,
  this.cupColor,
  this.textColor,
  this.showDecorations = true,
});