renderEthRequest method
Implementation
Future<List> renderEthRequest(Map payload) async {
final List res = await serviceRoot.webView!.evalJavascript(
'eth.keyring.renderEthRequest(${jsonEncode(payload)})',
wrapPromise: false);
return res;
}