MappingEntry constructor

MappingEntry({
  1. String? sourcePath,
  2. String? sourceTable,
  3. String? sourceType,
  4. String? targetPath,
  5. String? targetTable,
  6. String? targetType,
})

Implementation

MappingEntry({
  this.sourcePath,
  this.sourceTable,
  this.sourceType,
  this.targetPath,
  this.targetTable,
  this.targetType,
});