toScheduledAutoTuneSeverityType method

ScheduledAutoTuneSeverityType toScheduledAutoTuneSeverityType()

Implementation

ScheduledAutoTuneSeverityType toScheduledAutoTuneSeverityType() {
  switch (this) {
    case 'LOW':
      return ScheduledAutoTuneSeverityType.low;
    case 'MEDIUM':
      return ScheduledAutoTuneSeverityType.medium;
    case 'HIGH':
      return ScheduledAutoTuneSeverityType.high;
  }
  throw Exception('$this is not known in enum ScheduledAutoTuneSeverityType');
}