listAccounts method

Future<List<String>> listAccounts()

Returns a list of all account addresses managed by this provider.

Implementation

Future<List<String>> listAccounts() async =>
    (await promiseToFuture<List>(callMethod(impl, 'listAccounts', [])))
        .cast<String>();