Model constructor

Model({
  1. String? createTime,
  2. String? dataset,
  3. String? displayName,
  4. String? name,
  5. String? sourceLanguageCode,
  6. String? targetLanguageCode,
  7. int? testExampleCount,
  8. int? trainExampleCount,
  9. String? updateTime,
  10. int? validateExampleCount,
})

Implementation

Model({
  this.createTime,
  this.dataset,
  this.displayName,
  this.name,
  this.sourceLanguageCode,
  this.targetLanguageCode,
  this.testExampleCount,
  this.trainExampleCount,
  this.updateTime,
  this.validateExampleCount,
});