DownloadItem constructor

DownloadItem({
  1. required String url,
  2. String? id = "",
  3. bool? overwrite = false,
  4. String? wildcard = "",
})

Implementation

DownloadItem({
  required this.url,
  this.id = "",
  this.overwrite = false,
  this.wildcard = "",
});