getGasPrice method

Future<BigInt> getGasPrice()

Get Gas Price

Implementation

Future<BigInt> getGasPrice() async {
  return await performTask(
    (client) => client.getGasPrice(),
  );
}