Message constructor

Message({
  1. TimeMilliSeconds? timeMilliSeconds,
  2. String? sentBy,
  3. String? type,
  4. String? msgId,
  5. String? message,
  6. String? name,
  7. String? fileName,
  8. String? contentType,
  9. String? senderName,
  10. String? filePath,
  11. String? replyUser,
  12. String? replyMsg,
  13. String? replyMsgId,
  14. String? replyUserId,
  15. String? replyMsgType,
  16. dynamic time,
  17. String? thumbnailPath,
})

Implementation

Message(
    {this.timeMilliSeconds,
    this.sentBy,
    this.type,
    this.msgId,
    this.message,
    this.name,
    this.fileName,
    this.contentType,
    this.senderName,
    this.filePath,
    this.replyUser,
    this.replyMsg,
    this.replyMsgId,
    this.replyUserId,
    this.replyMsgType,
    this.time,
    this.thumbnailPath});