DecryptedMessageWithPubKey constructor

DecryptedMessageWithPubKey({
  1. NetworkEnvelope? networkEnvelope,
  2. 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;
}