asMulti method

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

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