EncryptedEncodedContent constructor

EncryptedEncodedContent({
  1. required String contentDigest,
  2. required Uint8List secret,
  3. required Uint8List salt,
  4. required Uint8List nonce,
  5. required Uint8List payload,
  6. int? contentLength,
  7. String? filename,
})

Implementation

EncryptedEncodedContent({
  required this.contentDigest,
  required this.secret,
  required this.salt,
  required this.nonce,
  required this.payload,
  this.contentLength,
  this.filename,
});