downloadFile method
Implementation
Future<Map<String, dynamic>> downloadFile(String uuid,
{String? savePath,
int maxConcurrentChunks = kDefaultDownloadConcurrency,
Function(int, int)? onProgress}) =>
downloader.downloadFile(uuid,
savePath: savePath,
maxConcurrentChunks: maxConcurrentChunks,
onProgress: onProgress);