WcEnvelope constructor

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

Implementation

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