connect static method

Future<List<String>> 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<List<String>> connect() async {
  final result = await MyAlgoPlatform.instance.connect();
  return result;
}