BubbleNormal constructor
BubbleNormal({})
Implementation
BubbleNormal({
Key? key,
required this.text,
this.bubbleRadius = BUBBLE_RADIUS,
this.isSender = true,
this.color = Colors.white70,
this.tail = true,
this.sent = false,
this.delivered = false,
this.seen = false,
this.textStyle = const TextStyle(
color: Colors.black87,
fontSize: 16,
),
}) : super(key: key);