asMulti method
AsMulti
It approves the multisig transaction and sends for further approval to other signatories.
Implementation
Future<bool>? asMulti(
Provider provider,
KeyPair keyPair, {
Duration storageKeyDelay = const Duration(seconds: 20),
}) async {
return await Multisig.asMulti(
multisigResponse: this,
provider: provider,
signer: keyPair,
storageKeyDelay: storageKeyDelay,
);
}