ModelMappingReport constructor

ModelMappingReport({
  1. int sourceModelId,
  2. int targetModelId,
  3. String mappingId,
  4. int sourceEntityCount,
  5. int targetEntityCount,
  6. List<EntityMappingInfo> mappedEntities = const [],
  7. List<EntityMatchInfo> candidateMatches = const [],
  8. List<EntityBase> foundEntities = const [],
  9. List<EntityBase> lostEntities = const [],
  10. List<MappingMessageInfo> messages = const [],
  11. int mappedCount,
  12. int partialMatchCount,
  13. int foundCount,
  14. int lostCount,
  15. MappingProperties mappingProperties,
})

Returns a new ModelMappingReport instance.

Implementation

ModelMappingReport({
  this.sourceModelId,
  this.targetModelId,
  this.mappingId,
  this.sourceEntityCount,
  this.targetEntityCount,
  this.mappedEntities = const [],
  this.candidateMatches = const [],
  this.foundEntities = const [],
  this.lostEntities = const [],
  this.messages = const [],
  this.mappedCount,
  this.partialMatchCount,
  this.foundCount,
  this.lostCount,
  this.mappingProperties,
});