PersonalChatModel constructor
- required ChatUserModel user,
- String? id,
- List<
ChatMessageModel> ? messages = const [], - int? unreadMessages,
- DateTime? lastUsed,
- ChatMessageModel? lastMessage,
- 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,
});