rescanSeries method

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

Handler for command (RescanSeries).

Refresh rescan disk for a single series. If no seriesId is supplied, all series are rescanned.

Optional Parameters:

  • seriesId: Series ID for the series to refresh

Implementation

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