undoResetShowProgress method

Future<void> undoResetShowProgress(
  1. String id
)

Undo the reset and have watched progress use all watched history for the show.

id - Trakt ID, Trakt slug, or IMDB ID

🔒 OAuth Required 🔥 VIP Only

Implementation

Future<void> undoResetShowProgress(String id) async {
  return await _manager
      ._authenticatedDelete("shows/$id/progress/watched/reset");
}