Progress constructor

Progress({
  1. int? bytesProcessed,
  2. int? bytesReturned,
  3. int? bytesScanned,
})

Implementation

Progress({
  this.bytesProcessed,
  this.bytesReturned,
  this.bytesScanned,
});