Encryption constructor

Encryption({
  1. String? initializationVector,
  2. String? key,
  3. String? keyMd5,
  4. String? mode,
})

Implementation

Encryption({
  this.initializationVector,
  this.key,
  this.keyMd5,
  this.mode,
});