getAbi method

Future<AbiResp> getAbi(
  1. String accountName
)

Get AMAX abi from account name

Implementation

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