ChatImageMessageModel constructor
- required ChatUserModel sender,
- required DateTime timestamp,
- required String imageUrl,
Constructs a ChatImageMessageModel instance.
sender: The sender of the message.
timestamp: The timestamp when the message was sent.
imageUrl: The URL of the image associated with the message.
Implementation
ChatImageMessageModel({
required this.sender,
required this.timestamp,
required this.imageUrl,
});