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