toHlsSegmentControl method
Implementation
HlsSegmentControl toHlsSegmentControl() {
switch (this) {
case 'SINGLE_FILE':
return HlsSegmentControl.singleFile;
case 'SEGMENTED_FILES':
return HlsSegmentControl.segmentedFiles;
}
throw Exception('$this is not known in enum HlsSegmentControl');
}