resetShowProgress method

Future<ShowProgressReset> resetShowProgress(
  1. String id
)

Reset a show's progress when the user started re-watching the show.

You can optionally specify the reset_at date to have it calculate progress from that specific date onwards.

id - Trakt ID, Trakt slug, or IMDB ID

🔒 OAuth Required 🔥 VIP Only

Implementation

Future<ShowProgressReset> resetShowProgress(String id) async {
  return await _manager._authenticatedPost<ShowProgressReset>(
      "shows/$id/progress/watched/reset");
}