toDeploymentStatus method
Implementation
DeploymentStatus toDeploymentStatus() {
switch (this) {
case 'PENDING':
return DeploymentStatus.pending;
case 'FAILED':
return DeploymentStatus.failed;
case 'DEPLOYED':
return DeploymentStatus.deployed;
}
throw Exception('$this is not known in enum DeploymentStatus');
}