DownloadProgress constructor

DownloadProgress({
  1. required String modelId,
  2. required int downloadedBytes,
  3. required int totalBytes,
  4. required int percentage,
  5. required double speedMBps,
  6. required DownloadStatus status,
})

Implementation

DownloadProgress({
  required this.modelId,
  required this.downloadedBytes,
  required this.totalBytes,
  required this.percentage,
  required this.speedMBps,
  required this.status,
});