Encryption constructor

Encryption({
  1. required String algorithm,
  2. String? compression,
  3. int? originalLength,
  4. String? profile,
  5. String? scheme,
})

Implementation

Encryption(
    {required this.algorithm,
    this.compression,
    this.originalLength,
    this.profile,
    this.scheme});