Updates the given artist
Future<void> updateArtist(Artist artist) async { await _put('/api/artist/${artist.id}', data: artist.toJson()); }