Gets the artist with the given id
Future<Artist> getArtistById(int id) async { final response = await _get('/api/artist/$id'); return Artist.fromJson(response.data); }