activateArtist method

Future<void> activateArtist(
  1. int id
)

Activates the given artist by id

Implementation

Future<void> activateArtist(int id) async {
  await _put('/api/artist/$id/activation');
}