Deletes the profile picture of the given artist
Future<Uint8List> getProfilePicture(int id) async { final response = await _get('/api/artist/$id/profilepicture'); return response.response.bodyBytes; }