getRawAbi method

Future<AbiResp> getRawAbi(
  1. String accountName
)

Get AMAX raw abi from account name

Implementation

Future<AbiResp> getRawAbi(String accountName) async {
  return this
      ._post('/chain/get_raw_abi', {'account_name': accountName}).then((abi) {
    return AbiResp.fromJson(abi);
  });
}