Location constructor

Location({
  1. String? buildingId,
  2. bool? current,
  3. String? deskCode,
  4. String? floor,
  5. String? floorSection,
  6. FieldMetadata? metadata,
  7. String? type,
  8. String? value,
})

Implementation

Location({
  this.buildingId,
  this.current,
  this.deskCode,
  this.floor,
  this.floorSection,
  this.metadata,
  this.type,
  this.value,
});