Place constructor

Place({
  1. String? id,
  2. String? href,
  3. String? name,
  4. String? role,
  5. dynamic baseType,
  6. dynamic schemaLocation,
  7. dynamic type,
  8. dynamic referredType,
  9. dynamic relatedLocation,
  10. dynamic meta,
})

Implementation

Place(
    {this.id,
    this.href,
    this.name,
    this.role,
    this.baseType,
    this.schemaLocation,
    this.type,
    this.referredType,
    this.relatedLocation,
    this.meta});