toAudioDefaultSelection method

AudioDefaultSelection toAudioDefaultSelection()

Implementation

AudioDefaultSelection toAudioDefaultSelection() {
  switch (this) {
    case 'DEFAULT':
      return AudioDefaultSelection.$default;
    case 'NOT_DEFAULT':
      return AudioDefaultSelection.notDefault;
  }
  throw Exception('$this is not known in enum AudioDefaultSelection');
}