toHlsMode method
Implementation
HlsMode toHlsMode() {
switch (this) {
case 'LIVE':
return HlsMode.live;
case 'VOD':
return HlsMode.vod;
}
throw Exception('$this is not known in enum HlsMode');
}
HlsMode toHlsMode() {
switch (this) {
case 'LIVE':
return HlsMode.live;
case 'VOD':
return HlsMode.vod;
}
throw Exception('$this is not known in enum HlsMode');
}