getArtistInfo method

Future<Artist> getArtistInfo()

Gets the details of the current artist

Implementation

Future<Artist> getArtistInfo() async {
  final response = await _get('/api/me');

  return Artist.fromJson(response.data);
}