getAccountInfo method

Future<JSON> getAccountInfo({
  1. required String address,
})

Implementation

Future<JSON> getAccountInfo({required String address}) {
  return getCall<JSON>(
    "$baseURL/v1/accounts/$address",
  );
}