cancelAsMulti method

Future<bool> cancelAsMulti(
  1. Provider provider,
  2. KeyPair keyPair, {
  3. Duration storageKeyDelay = const Duration(seconds: 20),
})

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,
  );
}