MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. required bool isCurrentUser,
  3. EdgeInsets padding = const EdgeInsets.all(12),
  4. Widget? child,
})

The constructor for the message bubble.

Implementation

const MessageBubble({
  super.key,
  required this.isCurrentUser,
  this.padding = const EdgeInsets.all(12),
  this.child,
});