MessagesModel constructor

MessagesModel({
  1. String? message,
  2. String? readBy,
  3. String? type,
  4. String? msgId,
  5. String? secretKey,
  6. String? sentBy,
  7. List<String>? viewBy,
  8. SentAt? timeMilliSeconds,
  9. SentAt? sentAt,
  10. bool? isRead,
  11. String? image,
  12. String? base64Thumbnail,
  13. String? video,
  14. String? thumbnail,
  15. String? document,
  16. String? audio,
})

Implementation

MessagesModel({
  this.message,
  this.readBy,
  this.type,
  this.msgId,
  this.secretKey,
  this.sentBy,
  this.viewBy,
  this.timeMilliSeconds,
  this.sentAt,
  this.isRead,
  this.image,
  this.base64Thumbnail,
  this.video,
  this.thumbnail,
  this.document,
  this.audio,
});