getAccountByAddress method Null safety

Future<AccountInformation> getAccountByAddress (
  1. String address
)

Get the account information of the given address. Given a specific account public key, this call returns the accounts status, balance and spendable amounts

Throws an AlgorandException if there is an HTTP error. Returns the account information.

Implementation

Future<AccountInformation> getAccountByAddress(String address) async {
  return await _accountRepository.getAccountByAddress(address);
}