get method
Future<RadarrQueue>
get({
- int page = 1,
- int pageSize = 20,
- RadarrSortDirection sortDirection = RadarrSortDirection.DESCENDING,
- RadarrQueueSortKey sortKey = RadarrQueueSortKey.PROGRESS,
- bool includeUnknownMovieItems = false,
Handler for queue.
Return a list of items in the queue.
Optional Parameters:
page
: Page of the queuepageSize
: Size of the page to fetchsortDirection
: Sorting directionsortKey
: Sorting keyincludeUnknownMovieItems
Include unknown items in the queue
Implementation
Future<RadarrQueue> get({
int page = 1,
int pageSize = 20,
RadarrSortDirection sortDirection = RadarrSortDirection.DESCENDING,
RadarrQueueSortKey sortKey = RadarrQueueSortKey.PROGRESS,
bool includeUnknownMovieItems = false,
}) async => _commandGetQueue(
_client,
page: page,
pageSize: pageSize,
sortDirection: sortDirection,
sortKey: sortKey,
includeUnknownMovieItems: includeUnknownMovieItems,
);