ResourceInfo constructor

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

Returns a new ResourceInfo instance.

Implementation

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