Future<void> download(String url, String savePath, {ProgressCallback? onReceiveProgress}) async { await _dio.download(url, savePath, onReceiveProgress: onReceiveProgress); }