ProgressCounters constructor

ProgressCounters({
  1. int? cancelledSteps,
  2. int? failedSteps,
  3. int? successSteps,
  4. int? timedOutSteps,
  5. int? totalSteps,
})

Implementation

ProgressCounters({
  this.cancelledSteps,
  this.failedSteps,
  this.successSteps,
  this.timedOutSteps,
  this.totalSteps,
});