updateAboutMe method

Future<void> updateAboutMe(
  1. String email,
  2. String artistName,
  3. String aboutMe
)

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,
  });
}