toAutoTuneType method

AutoTuneType toAutoTuneType()

Implementation

AutoTuneType toAutoTuneType() {
  switch (this) {
    case 'SCHEDULED_ACTION':
      return AutoTuneType.scheduledAction;
  }
  throw Exception('$this is not known in enum AutoTuneType');
}