ChatImageMessageModel constructor

ChatImageMessageModel({
  1. required ChatUserModel sender,
  2. required DateTime timestamp,
  3. 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,
});