toDeploymentState method
Implementation
DeploymentState toDeploymentState() {
switch (this) {
case 'BAKING':
return DeploymentState.baking;
case 'VALIDATING':
return DeploymentState.validating;
case 'DEPLOYING':
return DeploymentState.deploying;
case 'COMPLETE':
return DeploymentState.complete;
case 'ROLLING_BACK':
return DeploymentState.rollingBack;
case 'ROLLED_BACK':
return DeploymentState.rolledBack;
}
throw Exception('$this is not known in enum DeploymentState');
}