putUpdateTracks method

Future<void> putUpdateTracks({
  1. int? trackId,
  2. String? title,
  3. String? artist,
  4. String? album,
  5. List<String>? genres,
  6. int? year,
  7. String? isrc,
})

Parameters:

Implementation

Future<void> putUpdateTracks({ int? trackId, String? title, String? artist, String? album, List<String>? genres, int? year, String? isrc, }) async {
  final response = await putUpdateTracksWithHttpInfo( trackId: trackId, title: title, artist: artist, album: album, genres: genres, year: year, isrc: isrc, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}