CommsParticipant constructor

CommsParticipant({
  1. required int id,
  2. required int groupId,
  3. required int userId,
  4. int? lastReadMessageId,
  5. required int unreadCount,
  6. Map<String, dynamic>? taggedMessage,
})

Implementation

CommsParticipant({
  required this.id,
  required this.groupId,
  required this.userId,
  this.lastReadMessageId,
  required this.unreadCount,
  this.taggedMessage,
});