RawEncryptResponse constructor

RawEncryptResponse({
  1. String? ciphertext,
  2. String? ciphertextCrc32c,
  3. String? initializationVector,
  4. String? initializationVectorCrc32c,
  5. String? name,
  6. String? protectionLevel,
  7. int? tagLength,
  8. bool? verifiedAdditionalAuthenticatedDataCrc32c,
  9. bool? verifiedInitializationVectorCrc32c,
  10. bool? verifiedPlaintextCrc32c,
})

Implementation

RawEncryptResponse({
  this.ciphertext,
  this.ciphertextCrc32c,
  this.initializationVector,
  this.initializationVectorCrc32c,
  this.name,
  this.protectionLevel,
  this.tagLength,
  this.verifiedAdditionalAuthenticatedDataCrc32c,
  this.verifiedInitializationVectorCrc32c,
  this.verifiedPlaintextCrc32c,
});