MessageBubble constructor

const MessageBubble(
  1. {Key? key,
  2. required Message message,
  3. required String username,
  4. required VoidCallback onReply,
  5. required ValueNotifier<Map<String, String>?> replyInfoNotifier,
  6. required dynamic setReplyInfo(
    1. Map<String, String>?
    ),
  7. bool youAreCoHost = false,
  8. String islevel = '1',
  9. EventType eventType = EventType.none}
)

Implementation

const MessageBubble({
  super.key,
  required this.message,
  required this.username,
  required this.onReply,
  required this.replyInfoNotifier,
  required this.setReplyInfo,
  this.youAreCoHost = false,
  this.islevel = '1',
  this.eventType = EventType.none,
});