toDeploymentReadyAction method
Implementation
DeploymentReadyAction toDeploymentReadyAction() {
switch (this) {
case 'CONTINUE_DEPLOYMENT':
return DeploymentReadyAction.continueDeployment;
case 'STOP_DEPLOYMENT':
return DeploymentReadyAction.stopDeployment;
}
throw Exception('$this is not known in enum DeploymentReadyAction');
}