toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final canaryDeployment = this.canaryDeployment;
final customCanaryDeployment = this.customCanaryDeployment;
final runtimeConfig = this.runtimeConfig;
return {
'canaryDeployment': ?canaryDeployment,
'customCanaryDeployment': ?customCanaryDeployment,
'runtimeConfig': ?runtimeConfig,
};
}