getBlockHeight method

Future getBlockHeight ()

Implementation

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