ManFile constructor

ManFile({
  1. required String title,
  2. required String folderOut,
  3. required String folderTemp,
  4. required int key,
  5. required String url,
  6. required int task,
  7. bool complete = false,
  8. bool download = false,
  9. int partDownload = 0,
  10. bool replace = false,
  11. int sizeDownload = 0,
  12. int sizeFinal = 0,
})

Implementation

ManFile({
  required this.title,
  required this.folderOut,
  required this.folderTemp,
  required this.key,
  required this.url,
  required this.task,
  this.complete = false,
  this.download = false,
  this.partDownload = 0,
  this.replace = false,
  this.sizeDownload = 0,
  this.sizeFinal = 0,
});