refreshSeries method

Future<SonarrCommand> refreshSeries({
  1. int? seriesId,
})

Handler for command (RefreshSeries).

Refresh series information from trakt and rescan disk. If no seriesId is supplied, all series are refreshed.

Optional Parameters:

  • seriesId: Series ID for the series to refresh

Implementation

Future<SonarrCommand> refreshSeries({int? seriesId}) async =>
    _commandRefreshSeries(_client, seriesId: seriesId);