EntityMappingInfo constructor

EntityMappingInfo({
  1. String mappingId,
  2. int sourceAssetModelId,
  3. int sourceEntityId,
  4. int targetAssetModelId,
  5. int targetEntityId,
  6. EntityBase sourceEntity,
  7. EntityBase targetEntity,
  8. String matchType,
  9. int percentConfidence,
  10. ModelMapping mapping,
})

Returns a new EntityMappingInfo instance.

Implementation

EntityMappingInfo({
  this.mappingId,
  this.sourceAssetModelId,
  this.sourceEntityId,
  this.targetAssetModelId,
  this.targetEntityId,
  this.sourceEntity,
  this.targetEntity,
  this.matchType,
  this.percentConfidence,
  this.mapping,
});