GroupChatModel constructor

GroupChatModel({
  1. required bool canBeDeleted,
  2. required String title,
  3. required String imageUrl,
  4. required List<ChatUserModel> users,
  5. String? id,
  6. List<ChatMessageModel>? messages,
  7. int? unreadMessages,
  8. DateTime? lastUsed,
  9. ChatMessageModel? lastMessage,
})

Constructs a GroupChatModel instance.

id: The ID of the chat.

messages: The list of messages in the chat.

unreadMessages: The number of unread messages in the chat.

lastUsed: The timestamp when the chat was last used.

lastMessage: The last message sent in the chat.

title: The title of the group chat.

imageUrl: The URL of the image associated with the group chat.

users: The list of users participating in the group chat.

canBeDeleted: Indicates whether the chat can be deleted.

Implementation

GroupChatModel({
  required this.canBeDeleted,
  required this.title,
  required this.imageUrl,
  required this.users,
  this.id,
  this.messages,
  this.unreadMessages,
  this.lastUsed,
  this.lastMessage,
});