DownloadProgressState constructor

const DownloadProgressState({
  1. required int totalTasks,
  2. required int doneTasks,
  3. required String currentLabel,
  4. required double fraction,
  5. required int stepIndex,
  6. required int stepCount,
})

Implementation

const DownloadProgressState({
  required this.totalTasks,
  required this.doneTasks,
  required this.currentLabel,
  required this.fraction,
  required this.stepIndex,
  required this.stepCount,
});