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