Dataset constructor

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

Implementation

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