Chat constructor

Chat({
  1. String? id,
  2. String? message,
  3. String? url,
  4. String? type,
  5. String? sendAt,
  6. String? originalId,
  7. String? senderId,
})

Implementation

Chat({
  this.id,
  this.message,
  this.url,
  this.type,
  this.sendAt,
  this.originalId,
  this.senderId,
});