toAudioOnlyHlsSegmentType method

AudioOnlyHlsSegmentType toAudioOnlyHlsSegmentType()

Implementation

AudioOnlyHlsSegmentType toAudioOnlyHlsSegmentType() {
  switch (this) {
    case 'AAC':
      return AudioOnlyHlsSegmentType.aac;
    case 'FMP4':
      return AudioOnlyHlsSegmentType.fmp4;
  }
  throw Exception('$this is not known in enum AudioOnlyHlsSegmentType');
}