queryAddressWithAccountIndex method
query address with account index
Implementation
Future<List?> queryAddressWithAccountIndex(String index, int? ss58) async {
final res = await serviceRoot.webView!.evalJavascript(
'account.queryAddressWithAccountIndex(api, "$index", $ss58)');
return res;
}