Room constructor

Room({
  1. String? description,
  2. String? profileArn,
  3. String? providerCalendarId,
  4. String? roomArn,
  5. String? roomName,
})

Implementation

Room({
  this.description,
  this.profileArn,
  this.providerCalendarId,
  this.roomArn,
  this.roomName,
});