saveShows method

Future<void> saveShows(
  1. List<String> ids
)

Save shows for the current user. It requires the user-library-modify scope. ids - the ids of the shows to save

Implementation

Future<void> saveShows(List<String> ids) async {
  assert(ids.isNotEmpty, 'No show ids were provided for saving');
  await _api._put('$_path/shows?${_buildQuery({'ids': ids.join(',')})}');
}