TorrentAddRequestArgs constructor

TorrentAddRequestArgs({
  1. required TorrentAddFileInfo fileInfo,
  2. List<Cookie>? cookies,
  3. String? downloadDir,
  4. bool? paused,
  5. num? peerLimit,
  6. num? bandwidthPriority,
  7. FileIndices? filesWanted,
  8. FileIndices? filesUnwanted,
  9. FileIndices? priorityHigh,
  10. FileIndices? priorityLow,
  11. FileIndices? priorityNormal,
  12. List<String>? labels,
})

Implementation

TorrentAddRequestArgs({
  required this.fileInfo,
  this.cookies,
  this.downloadDir,
  this.paused,
  this.peerLimit,
  this.bandwidthPriority,
  this.filesWanted,
  this.filesUnwanted,
  this.priorityHigh,
  this.priorityLow,
  this.priorityNormal,
  this.labels,
});