MessageModel constructor

MessageModel({
  1. String? senderId,
  2. String? roomId,
  3. String? messageId,
  4. String? time,
  5. String? text,
  6. MediaFile? file,
  7. String? fileTime,
  8. List<String>? reacts,
})

Implementation

MessageModel({
  this.senderId,
  this.roomId,
  this.messageId,
  this.time,
  this.text,
  this.file,
  this.fileTime,
  this.reacts,
});