getAccount method

Future<Account> getAccount(
  1. String accountName
)

Get EOS 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);
  });
}