RoomModel constructor

RoomModel({
  1. required String roomId,
  2. String? name,
  3. String? type,
  4. LastMassage? lastMessage,
  5. List<String>? usersIds,
  6. List<String>? ids,
})

Implementation

RoomModel({
  required this.roomId,
  this.name,
  this.type,
  this.lastMessage,
  this.usersIds,
  this.ids,
});