BubbleChat constructor
BubbleChat({
- Key? key,
- BubbleChatDirection direction = BubbleChatDirection.left,
- BubbleChatCevron cevron = BubbleChatCevron.none,
- Color color = Colors.white,
- double radius = 10,
- required Widget child,
- double? width,
- Text? repliedChild,
- 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,
});