getByPlayerUuid method

Future<String> getByPlayerUuid (
  1. String uuid
)

Implementation

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