getAccounts method

Future<List<String>> getAccounts()

Implementation

Future<List<String>> getAccounts() async =>
    (await send('klay_accounts')).map((e) => e.toString()).toList();