getAccountInfo method
- String address
Returns a Future that resolves to the account related information
for address
Implementation
Future<AccountInfo> getAccountInfo(String address) {
return _client.call(
'getAccountInfo',
params: [
address,
<String, String>{'encoding': 'jsonParsed'}
],
);
}