DownloadProgressEvent constructor

DownloadProgressEvent({
  1. required String guid,
  2. required num totalBytes,
  3. required num receivedBytes,
  4. required DownloadProgressEventState state,
  5. String? filePath,
})

Implementation

DownloadProgressEvent({
  required this.guid,
  required this.totalBytes,
  required this.receivedBytes,
  required this.state,
  this.filePath,
});