accounts static method
Returns an array of accounts present in the Wallet for the given Network.
Implementation
static Future<List<dynamic>> accounts({required String ledger}) async {
final accounts = await AlgoSignerPlatform.instance.accounts(ledger: ledger);
return accounts;
}