MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. required RemoteActivityData chat,
  3. required RtcViewmodel viewModel,
  4. bool isPrivateChat = false,
  5. bool isHighlighted = false,
  6. VoidCallback? onNavigate,
  7. VoidCallback? onEdit,
})

Implementation

const MessageBubble({
  super.key,
  required this.chat,
  required this.viewModel,
  this.isPrivateChat = false,
  this.isHighlighted = false,
  this.onNavigate,
  this.onEdit,
});