connect static method

Future<Map<String, dynamic>> connect()

Requests access to the Wallet for the dApp, may be rejected or approved. Every access to the extension begins with a connect request, which if approved by the user, allows the dApp to follow-up with other requests.

Implementation

static Future<Map<String, dynamic>> connect() async {
  final result = await AlgoSignerPlatform.instance.connect();
  return result;
}