DownloadFileOptions constructor

DownloadFileOptions({
  1. required String downloadUrl,
  2. required String fileName,
  3. String? customSavePath,
})

Implementation

DownloadFileOptions({
  required this.downloadUrl,
  required this.fileName,
  this.customSavePath,
});