ChatRoom constructor

ChatRoom({
  1. int? id,
  2. required String title,
  3. DateTime? created,
  4. ChatTypeEnum? chatType,
  5. String? newestMessage,
})

Returns a new ChatRoom instance.

Implementation

ChatRoom({

   this.id,

  required  this.title,

   this.created,

   this.chatType,

   this.newestMessage,
});