savedShows method

Pages<Show> savedShows()

Get a list of shows saved in the current Spotify user’s library.

Implementation

Pages<Show> savedShows() {
  return _getPages('$_path/shows', (json) => Show.fromJson(json['show']));
}