mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
13 lines
335 B
Dart
13 lines
335 B
Dart
part of sonarr_commands;
|
|
|
|
Future<SonarrSeries> _commandGetSeries(
|
|
Dio client, {
|
|
required int seriesId,
|
|
bool includeSeasonImages = false,
|
|
}) async {
|
|
Response response = await client.get('series/$seriesId', queryParameters: {
|
|
'includeSeasonImages': includeSeasonImages,
|
|
});
|
|
return SonarrSeries.fromJson(response.data);
|
|
}
|