getProfilesByUuid method
- 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;
}