SystemInfo constructor

SystemInfo({
  1. List<ComponentInfo> components = const [],
  2. int assetModelId,
  3. int entityId,
  4. String name,
  5. String description,
  6. String externalIdentifier,
  7. String externalObjectType,
  8. String externalObjectName,
  9. ModelInfo model,
  10. String modelName,
  11. DateTime dateCreated,
  12. DateTime dateModified,
})

Returns a new SystemInfo instance.

Implementation

SystemInfo({
  this.components = const [],
  this.assetModelId,
  this.entityId,
  this.name,
  this.description,
  this.externalIdentifier,
  this.externalObjectType,
  this.externalObjectName,
  this.model,
  this.modelName,
  this.dateCreated,
  this.dateModified,
});