SearchFileDownloads constructor

const SearchFileDownloads({
  1. required String query,
  2. required bool onlyActive,
  3. required bool onlyCompleted,
  4. required String offset,
  5. required int limit,
})

Searches for files in the file download list or recently downloaded files from the list

Implementation

const SearchFileDownloads({
  required this.query,
  required this.onlyActive,
  required this.onlyCompleted,
  required this.offset,
  required this.limit,
});