withSignature method
Implementation
Envelope withSignature({required int v, required Uint8List r, required Uint8List s}) {
return Envelope(
kind: kind,
to: to,
value: value,
data: data,
gasLimit: gasLimit,
nonce: nonce,
chainId: chainId,
gasPrice: gasPrice,
maxFeePerGas: maxFeePerGas,
maxPriorityFeePerGas: maxPriorityFeePerGas,
maxFeePerBlobGas: maxFeePerBlobGas,
blobVersionedHashes: blobVersionedHashes,
blobs: blobs,
accessList: accessList,
authorizationList: authorizationList,
v: v,
r: r,
s: s,
);
}