CryptoEncodingParams constructor

CryptoEncodingParams({
  1. required Uint8List type,
  2. required Uint8List sealed,
  3. required Uint8List iv,
  4. Uint8List? senderPublicKey,
})

Implementation

CryptoEncodingParams({
  required this.type,
  required this.sealed,
  required this.iv,
  this.senderPublicKey,
});