toHlsStreamInfResolution method
Implementation
HlsStreamInfResolution toHlsStreamInfResolution() {
switch (this) {
case 'INCLUDE':
return HlsStreamInfResolution.include;
case 'EXCLUDE':
return HlsStreamInfResolution.exclude;
}
throw Exception('$this is not known in enum HlsStreamInfResolution');
}