postCreatePlaylists method

Future<void> postCreatePlaylists({
  1. PlaylistClientShortDTO? playlistClientShortDTO,
})

Parameters:

Implementation

Future<void> postCreatePlaylists({ PlaylistClientShortDTO? playlistClientShortDTO, }) async {
  final response = await postCreatePlaylistsWithHttpInfo( playlistClientShortDTO: playlistClientShortDTO, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}