getContract method

Future getContract (String hash, { bool json: false })

Implementation

Future<dynamic> getContract(String hash, {bool json = false}) async {
  var data = {
    'Action': 'getcontract',
    'Version': '1.0.0',
    'Hash': hash,
    'Raw': json ? '0' : '1'
  };
  return send(data);
}