DownloadFileOptions constructor

DownloadFileOptions({
  1. required String downloadUrl,
  2. required String fileName,
  3. String? customSavePath,
  4. Map<String, dynamic>? headers,
})

Implementation

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