IfcType constructor

IfcType({
  1. String externalObjectType,
  2. String name,
  3. String description,
  4. List<ClassificationNode> classifications = const [],
})

Returns a new IfcType instance.

Implementation

IfcType({
  this.externalObjectType,
  this.name,
  this.description,
  this.classifications = const [],
});