UpdateProgress constructor

UpdateProgress({
  1. required double totalBytes,
  2. required double receivedBytes,
  3. required String currentFile,
  4. required int totalFiles,
  5. required int completedFiles,
  6. String? stagingDirectory,
})

Implementation

UpdateProgress({
  required this.totalBytes,
  required this.receivedBytes,
  required this.currentFile,
  required this.totalFiles,
  required this.completedFiles,
  this.stagingDirectory,
});