DownloadStreamModel constructor

DownloadStreamModel({
  1. int loaded = 0,
  2. int total = 0,
  3. String error = "",
  4. bool isCompleted = false,
})

Implementation

DownloadStreamModel({
  this.loaded = 0,
  this.total = 0,
  this.error = "",
  this.isCompleted = false,
});