queryIndexInfo method
Get on-chain account info of addresses
Implementation
Future<List?> queryIndexInfo(List addresses) async {
final dynamic res = await serviceRoot.webView!.evalJavascript(
'account.getAccountIndex(api, ${jsonEncode(addresses)})');
return res;
}