Space constructor

Space({
  1. int levelId,
  2. String levelName,
  3. LevelInfo level,
  4. List<ComponentInfo> components = const [],
  5. List<ZoneInfo> zones = const [],
  6. List<Object> componentEntities = const [],
  7. Object levelEntity,
  8. List<DocumentInfo> documents = const [],
  9. List<Object> documentEntities = const [],
  10. List<IssueInfo> issues = const [],
  11. List<EntityContact> contacts = const [],
  12. EntityContact createdBy,
  13. EntityContact modifiedBy,
  14. List<AttributeValue> attributes = const [],
  15. Footprint footprint,
  16. List<EntityMappingInfo> mappedFrom = const [],
  17. List<EntityMappingInfo> mappedTo = const [],
  18. IfcType ifcType,
  19. int assetModelId,
  20. int entityId,
  21. String name,
  22. String description,
  23. String externalIdentifier,
  24. String externalObjectType,
  25. String externalObjectName,
  26. ModelInfo model,
  27. String modelName,
  28. DateTime dateCreated,
  29. DateTime dateModified,
})

Returns a new Space instance.

Implementation

Space({
  this.levelId,
  this.levelName,
  this.level,
  this.components = const [],
  this.zones = const [],
  this.componentEntities = const [],
  this.levelEntity,
  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.assetModelId,
  this.entityId,
  this.name,
  this.description,
  this.externalIdentifier,
  this.externalObjectType,
  this.externalObjectName,
  this.model,
  this.modelName,
  this.dateCreated,
  this.dateModified,
});