Encryption constructor

Encryption({
  1. Aes128Encryption? aes128,
  2. String? iv,
  3. String? key,
  4. MpegCommonEncryption? mpegCenc,
  5. SampleAesEncryption? sampleAes,
})

Implementation

Encryption({
  this.aes128,
  this.iv,
  this.key,
  this.mpegCenc,
  this.sampleAes,
});