updateAboutMe method
Updates the about me info of the current artist
Implementation
Future<void> updateAboutMe(String email, String artistName, String aboutMe) async {
await _put('/api/me', data: {
'email': email,
'artistName': artistName,
'aboutMe': aboutMe,
});
}