toHlsEncryptionType method

HlsEncryptionType toHlsEncryptionType()

Implementation

HlsEncryptionType toHlsEncryptionType() {
  switch (this) {
    case 'AES128':
      return HlsEncryptionType.aes128;
    case 'SAMPLE_AES':
      return HlsEncryptionType.sampleAes;
  }
  throw Exception('$this is not known in enum HlsEncryptionType');
}