Chats constructor

Chats({
  1. DateTime? date,
  2. String? message,
  3. bool? read,
  4. String? owner,
})

Implementation

Chats({
  this.date,
  this.message,
  this.read,
  this.owner,
});