Level constructor

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

Returns a new Level instance.

Implementation

Level({
  this.spaces = const [],
  this.spaceEntities = const [],
  this.facility,
  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,
});