connect static method

Future<SmartContractWallet> connect({
  1. required String networkUrl,
  2. required String r1PublicKey,
  3. required String recoveryWalletPrivateKey,
})

Implementation

static Future<SmartContractWallet> connect(
    {required String networkUrl,
    required String r1PublicKey,
    required String recoveryWalletPrivateKey}) async {
  final wrappedWallet = await _platformWallet.connect(
      networkUrl: networkUrl,
      r1PublicKey: r1PublicKey,
      recoveryWalletPrivateKey: recoveryWalletPrivateKey);
  return SmartContractWallet(wrappedWallet);
}