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