approveAsMulti method

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

ApproveAsMulti

It approves the multisig transaction and sends for further approval to other signatories.

Implementation

Future<bool> approveAsMulti(
  Provider provider,
  KeyPair keyPair, {
  Duration storageKeyDelay = const Duration(seconds: 25),
}) async {
  return await Multisig.approveAsMulti(
    multisigResponse: this,
    provider: provider,
    signer: keyPair,
    storageKeyDelay: storageKeyDelay,
  );
}