toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final displayName = this.displayName;
final name = this.name;
final testCasesConfig = this.testCasesConfig;
final updateTime = this.updateTime;
final versionConfigs = this.versionConfigs;
final webhookConfig = this.webhookConfig;
return {
'description': ?description,
'displayName': ?displayName,
'name': ?name,
'testCasesConfig': ?testCasesConfig,
'updateTime': ?updateTime,
'versionConfigs': ?versionConfigs,
'webhookConfig': ?webhookConfig,
};
}