toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final dataset = this.dataset;
  final displayName = this.displayName;
  final name = this.name;
  final sourceLanguageCode = this.sourceLanguageCode;
  final targetLanguageCode = this.targetLanguageCode;
  final testExampleCount = this.testExampleCount;
  final trainExampleCount = this.trainExampleCount;
  final updateTime = this.updateTime;
  final validateExampleCount = this.validateExampleCount;
  return {
    'createTime': ?createTime,
    'dataset': ?dataset,
    'displayName': ?displayName,
    'name': ?name,
    'sourceLanguageCode': ?sourceLanguageCode,
    'targetLanguageCode': ?targetLanguageCode,
    'testExampleCount': ?testExampleCount,
    'trainExampleCount': ?trainExampleCount,
    'updateTime': ?updateTime,
    'validateExampleCount': ?validateExampleCount,
  };
}