toHlsH265PackagingType method

HlsH265PackagingType toHlsH265PackagingType()

Implementation

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