Envelope constructor
Envelope({})
Implementation
Envelope({
required this.publicKey,
required this.payloadType,
required Uint8List rawPayload,
required Uint8List signature,
}) : _signature = signature,
rawPayload = Uint8List.fromList(rawPayload);