DownloadResult constructor
DownloadResult({
- required int downloadedBytes,
- required bool isComplete,
- StreamSubscription<
DownloadProgress> ? subscription,
Implementation
DownloadResult({
required this.downloadedBytes,
required this.isComplete,
this.subscription,
});