HlsEncryption constructor

HlsEncryption({
  1. required SpekeKeyProvider spekeKeyProvider,
  2. String? constantInitializationVector,
  3. EncryptionMethod? encryptionMethod,
  4. int? keyRotationIntervalSeconds,
  5. bool? repeatExtXKey,
})

Implementation

HlsEncryption({
  required this.spekeKeyProvider,
  this.constantInitializationVector,
  this.encryptionMethod,
  this.keyRotationIntervalSeconds,
  this.repeatExtXKey,
});