cancelAsMulti method
CancelAsMulti (Only the owner can cancel the multisig call.)
It cancels the multisig transaction.
Implementation
Future<bool> cancelAsMulti(
Provider provider,
KeyPair keyPair, {
Duration storageKeyDelay = const Duration(seconds: 20),
}) async {
return await Multisig.cancelAsMulti(
multisigResponse: this,
provider: provider,
signer: keyPair,
storageKeyDelay: storageKeyDelay,
);
}