core/http/http_download library
Classes
- DownloadManager
- Description : 下载管理类 @author zaze @date 2022/8/9 - 22:25
- DownloadRequest
- Description :接口请求体 @author zaze @date 2022/8/5 - 5:13
Properties
- downloadManager ↔ DownloadManager
-
getter/setter pair
Typedefs
- OnFailure = void Function(int errorCode, String errorMessage, String savePath)
-
下载失败回调
errorCode
描述信息errorMessage
描述信息savePath
保存路径 - OnProgress = void Function(int count, int total, double speed)
-
进度
count
文件总大小total
已下载大小speed
下载速度 - OnStart = void Function(int total)
-
开始
total
文件大小 - OnSuccess = void Function(String savePath)
-
下载成功回调
savePath
保存路径speed
下载速度