MessageBubble constructor
const
MessageBubble({
- Key? key,
- required bool isCurrentUser,
- EdgeInsets padding = const EdgeInsets.all(12),
- Widget? child,
The constructor for the message bubble.
Implementation
const MessageBubble({
super.key,
required this.isCurrentUser,
this.padding = const EdgeInsets.all(12),
this.child,
});