getAccountBalances method

Future getAccountBalances()

Implementation

Future<dynamic> getAccountBalances() async {
  final response = await requestHandler.httpClient.get("accounts/$accountId/balances");

  return response.data;
}