EntityCreate constructor

EntityCreate({
  1. @required int assetModelId,
  2. int entityId,
  3. String externalIdentifier,
  4. String name,
  5. String description,
  6. String externalObjectType,
})

Returns a new EntityCreate instance.

Implementation

EntityCreate({
  @required this.assetModelId,
  this.entityId,
  this.externalIdentifier,
  this.name,
  this.description,
  this.externalObjectType,
});