PersonalChatModel constructor

PersonalChatModel({
  1. required ChatUserModel user,
  2. String? id,
  3. List<ChatMessageModel>? messages = const [],
  4. int? unreadMessages,
  5. DateTime? lastUsed,
  6. ChatMessageModel? lastMessage,
  7. bool canBeDeleted = true,
})

Constructs a PersonalChatModel instance.

user: The user involved in the personal chat.

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.

canBeDeleted: Indicates whether the chat can be deleted.

Implementation

PersonalChatModel({
  required this.user,
  this.id,
  this.messages = const [],
  this.unreadMessages,
  this.lastUsed,
  this.lastMessage,
  this.canBeDeleted = true,
});