getNetworkProperties method
Implementation
Future<Map> getNetworkProperties(String chain) async {
assert(_runner != null, 'bridge not init');
final Map res =
await _runner?.evalJavascript('bridge.getNetworkProperties("$chain")');
return res;
}