getGasPrice method

Future<EtherAmount> getGasPrice()

Implementation

Future<EtherAmount> getGasPrice() async {
  final gasPrice = await _client.getGasPrice();
  return EtherAmount.inWei(gasPrice);
}