toDeploymentStatus method

DeploymentStatus toDeploymentStatus()

Implementation

DeploymentStatus toDeploymentStatus() {
  switch (this) {
    case 'PENDING_UPDATE':
      return DeploymentStatus.pendingUpdate;
    case 'IN_PROGRESS':
      return DeploymentStatus.inProgress;
    case 'COMPLETED':
      return DeploymentStatus.completed;
    case 'NOT_ELIGIBLE':
      return DeploymentStatus.notEligible;
    case 'ELIGIBLE':
      return DeploymentStatus.eligible;
  }
  throw Exception('$this is not known in enum DeploymentStatus');
}