DownloadProgress constructor
const
DownloadProgress({
- required int bytesDownloaded,
- required int totalBytes,
- required DownloadProgressState state,
- DownloadProgressStage stage = DownloadProgressStage.downloading,
Implementation
const DownloadProgress({
required this.bytesDownloaded,
required this.totalBytes,
required this.state,
this.stage = DownloadProgressStage.downloading,
});