downloadFiles method

Future<Response> downloadFiles(
  1. List<DownloadItem> urls,
  2. String output,
  3. int threads,
  4. Map<String, dynamic> headers,
  5. Map<String, dynamic> options, {
  6. required dynamic onProgress(
    1. ProgressDownload
    ),
  7. required dynamic onDownload(
    1. SingleDownload
    ),
})

Implementation

Future<Response> downloadFiles(
  List<DownloadItem> urls,
  String output,
  int threads,
  Map<String, dynamic> headers,
  Map<String, dynamic> options, {
  required Function(ProgressDownload) onProgress,
  required Function(SingleDownload) onDownload,
}) {
  throw UnimplementedError('downloadFiles() has not been implemented.');
}