CometChatTextBubble constructor

const CometChatTextBubble({
  1. Key? key,
  2. String? text,
  3. TextBubbleStyle style = const TextBubbleStyle(),
  4. CometChatTheme? theme,
  5. BubbleAlignment? alignment,
  6. List<CometChatTextFormatter>? formatters,
})

Implementation

const CometChatTextBubble({
  super.key,
  this.text,
  this.style = const TextBubbleStyle(),
  this.theme,
  this.alignment,
  this.formatters,
});