getGasPrice method

Future getGasPrice ()

Implementation

Future<dynamic> getGasPrice() async {
  var data = {
    'Action': 'getgasprice',
    'Version': '1.0.0',
  };
  return send(data);
}