queryBonded method

Future<List?> queryBonded(
  1. List<String> pubKeys
)

Implementation

Future<List?> queryBonded(List<String> pubKeys) async {
  dynamic res = await serviceRoot.webView!.evalJavascript(
      'account.queryAccountsBonded(api, ${jsonEncode(pubKeys)})');
  return res;
}