RadarrHistory constructor

RadarrHistory({
  1. int? page,
  2. int? pageSize,
  3. RadarrHistorySortKey? sortKey,
  4. RadarrSortDirection? sortDirection,
  5. int? totalRecords,
  6. List<RadarrHistoryRecord>? records,
})

Implementation

RadarrHistory({
    this.page,
    this.pageSize,
    this.sortKey,
    this.sortDirection,
    this.totalRecords,
    this.records,
});