toStackDriftDetectionStatus method

StackDriftDetectionStatus toStackDriftDetectionStatus()

Implementation

StackDriftDetectionStatus toStackDriftDetectionStatus() {
  switch (this) {
    case 'DETECTION_IN_PROGRESS':
      return StackDriftDetectionStatus.detectionInProgress;
    case 'DETECTION_FAILED':
      return StackDriftDetectionStatus.detectionFailed;
    case 'DETECTION_COMPLETE':
      return StackDriftDetectionStatus.detectionComplete;
  }
  throw Exception('$this is not known in enum StackDriftDetectionStatus');
}