getProfilePicture method

Future<Uint8List> getProfilePicture(
  1. int id
)

Deletes the profile picture of the given artist

Implementation

Future<Uint8List> getProfilePicture(int id) async {
  final response = await _get('/api/artist/$id/profilepicture');

  return response.response.bodyBytes;
}