toDeploymentOption method
Implementation
DeploymentOption toDeploymentOption() {
switch (this) {
case 'WITH_TRAFFIC_CONTROL':
return DeploymentOption.withTrafficControl;
case 'WITHOUT_TRAFFIC_CONTROL':
return DeploymentOption.withoutTrafficControl;
}
throw Exception('$this is not known in enum DeploymentOption');
}