ProgressModel constructor

ProgressModel({
  1. String status = '',
  2. double uploadPercentage = 0.0,
  3. int currentChunkIndex = 0,
  4. int totalChunks = 0,
  5. int chunksUploaded = 0,
  6. bool isCompleted = false,
})

Implementation

ProgressModel({
  this.status = '',
  this.uploadPercentage = 0.0,
  this.currentChunkIndex = 0,
  this.totalChunks = 0,
  this.chunksUploaded = 0,
  this.isCompleted = false,
});