getProfilesByUuid method

Future<String> getProfilesByUuid (
  1. String uuid
)

Implementation

Future<String> getProfilesByUuid(String uuid) async {
  url = HypixelAPI.BASE + 'skyblock?key=${HypixelAPI.API_KEY}&profiles=${uuid}';
  response = await http.get(url);
  return response.body;
}