createRevocation static method
Creates a single revocation authorization.
Setting the address to zero address revokes any existing delegation for the given nonce.
Implementation
static Authorization createRevocation({
required int chainId,
required BigInt nonce,
}) {
return Authorization.revocation(
chainId: chainId,
nonce: nonce,
);
}