getWalletTokens method
Implementation
Future<JSON> getWalletTokens({
  required String address,
  int asset_type = 0,
}) {
  final endpoint = "$baseURL/account/wallet?address=${address}&asset_type=${asset_type}";
  return getCall<JSON>(endpoint);
}
Future<JSON> getWalletTokens({
  required String address,
  int asset_type = 0,
}) {
  final endpoint = "$baseURL/account/wallet?address=${address}&asset_type=${asset_type}";
  return getCall<JSON>(endpoint);
}