ManDownload constructor

ManDownload({
  1. required bool complete,
  2. required String speed,
  3. required double porcent,
  4. required int sizeDownload,
  5. required int sizeFinal,
  6. bool join = false,
  7. bool error = false,
})

Implementation

ManDownload({
  required this.complete,
  required this.speed,
  required this.porcent,
  required this.sizeDownload,
  required this.sizeFinal,
  this.join = false,
  this.error = false,
});