DocumentCreate constructor

DocumentCreate({
  1. String url,
  2. String location,
  3. String itemReference,
  4. String scope,
  5. String revision,
  6. String purpose,
  7. String intendedUse,
  8. @required int assetModelId,
  9. int entityId,
  10. String externalIdentifier,
  11. String name,
  12. String description,
  13. String externalObjectType,
})

Returns a new DocumentCreate instance.

Implementation

DocumentCreate({
  this.url,
  this.location,
  this.itemReference,
  this.scope,
  this.revision,
  this.purpose,
  this.intendedUse,
  @required this.assetModelId,
  this.entityId,
  this.externalIdentifier,
  this.name,
  this.description,
  this.externalObjectType,
});