ModelInfo constructor

ModelInfo({
  1. int assetModelId,
  2. int assetId,
  3. String name,
  4. String revision,
  5. String status,
  6. bool isCurrent,
  7. String uploadedById,
  8. String segmentName,
  9. String segmentId,
  10. String assetName,
  11. String modelPath,
  12. int modelSize,
  13. double oneMeter,
  14. int originalAuthorId,
  15. DateTime dateUploaded,
  16. DateTime dateProcessed,
  17. int lastEntityId,
  18. String processingStage,
  19. String processingStatus,
})

Returns a new ModelInfo instance.

Implementation

ModelInfo({
  this.assetModelId,
  this.assetId,
  this.name,
  this.revision,
  this.status,
  this.isCurrent,
  this.uploadedById,
  this.segmentName,
  this.segmentId,
  this.assetName,
  this.modelPath,
  this.modelSize,
  this.oneMeter,
  this.originalAuthorId,
  this.dateUploaded,
  this.dateProcessed,
  this.lastEntityId,
  this.processingStage,
  this.processingStatus,
});