DecryptedMessageWithPubKey constructor
DecryptedMessageWithPubKey({
- NetworkEnvelope? networkEnvelope,
- List<
int> ? signaturePubKeyBytes,
Implementation
factory DecryptedMessageWithPubKey({
NetworkEnvelope? networkEnvelope,
$core.List<$core.int>? signaturePubKeyBytes,
}) {
final $result = create();
if (networkEnvelope != null) {
$result.networkEnvelope = networkEnvelope;
}
if (signaturePubKeyBytes != null) {
$result.signaturePubKeyBytes = signaturePubKeyBytes;
}
return $result;
}