getGasPrice method

Future<String?> getGasPrice()

Implementation

Future<String?> getGasPrice() async {
  final res =
      await serviceRoot.webView!.evalJavascript('eth.keyring.getGasPrice()');
  return res;
}