Site constructor

Site({
  1. List<DocumentInfo> documents = const [],
  2. List<Object> documentEntities = const [],
  3. List<IssueInfo> issues = const [],
  4. List<EntityContact> contacts = const [],
  5. EntityContact createdBy,
  6. EntityContact modifiedBy,
  7. List<AttributeValue> attributes = const [],
  8. Footprint footprint,
  9. List<EntityMappingInfo> mappedFrom = const [],
  10. List<EntityMappingInfo> mappedTo = const [],
  11. IfcType ifcType,
  12. Map<String, Object> dynamicProperties = const {},
  13. int assetModelId,
  14. int entityId,
  15. String name,
  16. String description,
  17. String externalIdentifier,
  18. String externalObjectType,
  19. String externalObjectName,
  20. ModelInfo model,
  21. String modelName,
  22. DateTime dateCreated,
  23. DateTime dateModified,
})

Returns a new Site instance.

Implementation

Site({
  this.documents = const [],
  this.documentEntities = const [],
  this.issues = const [],
  this.contacts = const [],
  this.createdBy,
  this.modifiedBy,
  this.attributes = const [],
  this.footprint,
  this.mappedFrom = const [],
  this.mappedTo = const [],
  this.ifcType,
  this.dynamicProperties = const {},
  this.assetModelId,
  this.entityId,
  this.name,
  this.description,
  this.externalIdentifier,
  this.externalObjectType,
  this.externalObjectName,
  this.model,
  this.modelName,
  this.dateCreated,
  this.dateModified,
});