getAccount method
Get AMAX account info form the given account name
Implementation
Future<Account> getAccount(String accountName) async {
return this._post('/chain/get_account', {'account_name': accountName}).then(
(account) {
return Account.fromJson(account);
});
}