MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. required String text,
  3. required bool isUser,
  4. FormlessTheme? theme,
  5. VoidCallback? onEdit,
})

Implementation

const MessageBubble({
  super.key,
  required this.text,
  required this.isUser,
  this.theme,
  this.onEdit,
});