Chat constructor

Chat({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
})

Implementation

Chat({
  this.id,
  this.createdAt,
  this.updatedAt
});