toHlsH265PackagingType method
Implementation
HlsH265PackagingType toHlsH265PackagingType() {
switch (this) {
case 'HEV1':
return HlsH265PackagingType.hev1;
case 'HVC1':
return HlsH265PackagingType.hvc1;
}
throw Exception('$this is not known in enum HlsH265PackagingType');
}