Room constructor

Room({
  1. String? accountId,
  2. String? createdBy,
  3. DateTime? createdTimestamp,
  4. String? name,
  5. String? roomId,
  6. DateTime? updatedTimestamp,
})

Implementation

Room({
  this.accountId,
  this.createdBy,
  this.createdTimestamp,
  this.name,
  this.roomId,
  this.updatedTimestamp,
});