TranslationMatch constructor

TranslationMatch(
  1. String id,
  2. String segment,
  3. String translation,
  4. String source,
  5. String target,
  6. String quality,
  7. String? reference,
  8. int usageCount,
  9. String subject,
  10. String createdBy,
  11. String lastUpdatedBy,
  12. String createDate,
  13. String lastUpdateDate,
  14. double match,
)

Implementation

TranslationMatch(
  this.id,
  this.segment,
  this.translation,
  this.source,
  this.target,
  this.quality,
  this.reference,
  this.usageCount,
  this.subject,
  this.createdBy,
  this.lastUpdatedBy,
  this.createDate,
  this.lastUpdateDate,
  this.match,
);