BubbleChat constructor

BubbleChat({
  1. Key? key,
  2. BubbleChatDirection direction = BubbleChatDirection.left,
  3. BubbleChatCevron cevron = BubbleChatCevron.none,
  4. Color color = Colors.white,
  5. double radius = 10,
  6. required Widget child,
  7. double? width,
  8. Text? repliedChild,
  9. Text? from,
})

Implementation

BubbleChat({
  super.key,
  this.direction = BubbleChatDirection.left,
  this.cevron = BubbleChatCevron.none,
  this.color = Colors.white,
  this.radius = 10,
  required this.child,
  this.width,
  this.repliedChild,
  this.from,
});