toHlsKeyProviderType method
Implementation
HlsKeyProviderType toHlsKeyProviderType() {
switch (this) {
case 'SPEKE':
return HlsKeyProviderType.speke;
case 'STATIC_KEY':
return HlsKeyProviderType.staticKey;
}
throw Exception('$this is not known in enum HlsKeyProviderType');
}