Encryption constructor

Encryption({
  1. required ServerSideEncryption encryptionType,
  2. String? kMSContext,
  3. String? kMSKeyId,
})

Implementation

Encryption({
  required this.encryptionType,
  this.kMSContext,
  this.kMSKeyId,
});