DownloadProgressWidget constructor

const DownloadProgressWidget({
  1. Key? key,
  2. required Stream<DownloadProgress> progressStream,
  3. VoidCallback? onCancel,
  4. DownloadProgressStyle style = const DownloadProgressStyle(),
})

Implementation

const DownloadProgressWidget({
  super.key,
  required this.progressStream,
  this.onCancel,
  this.style = const DownloadProgressStyle(),
});