toHlsId3SegmentTaggingState method

HlsId3SegmentTaggingState toHlsId3SegmentTaggingState()

Implementation

HlsId3SegmentTaggingState toHlsId3SegmentTaggingState() {
  switch (this) {
    case 'DISABLED':
      return HlsId3SegmentTaggingState.disabled;
    case 'ENABLED':
      return HlsId3SegmentTaggingState.enabled;
  }
  throw Exception('$this is not known in enum HlsId3SegmentTaggingState');
}