ComponentInfo constructor

ComponentInfo({
  1. String componentTypeName,
  2. ComponentTypeInfo componentType,
  3. int assetModelId,
  4. int entityId,
  5. String name,
  6. String description,
  7. String externalIdentifier,
  8. String externalObjectType,
  9. String externalObjectName,
  10. ModelInfo model,
  11. String modelName,
  12. DateTime dateCreated,
  13. DateTime dateModified,
})

Returns a new ComponentInfo instance.

Implementation

ComponentInfo({
  this.componentTypeName,
  this.componentType,
  this.assetModelId,
  this.entityId,
  this.name,
  this.description,
  this.externalIdentifier,
  this.externalObjectType,
  this.externalObjectName,
  this.model,
  this.modelName,
  this.dateCreated,
  this.dateModified,
});