deleteArtist method

Future<void> deleteArtist(
  1. int id
)

Deletes the given artist by id

Implementation

Future<void> deleteArtist(int id) async {
  await _delete('/api/artist/$id');
}