Progress constructor

Progress({
  1. double? analyzed,
  2. double? encoded,
  3. double? notified,
  4. double? uploaded,
})

Implementation

Progress({
  this.analyzed,
  this.encoded,
  this.notified,
  this.uploaded,
});