WorkflowRunStatistics constructor

WorkflowRunStatistics({
  1. int? failedActions,
  2. int? runningActions,
  3. int? stoppedActions,
  4. int? succeededActions,
  5. int? timeoutActions,
  6. int? totalActions,
})

Implementation

WorkflowRunStatistics({
  this.failedActions,
  this.runningActions,
  this.stoppedActions,
  this.succeededActions,
  this.timeoutActions,
  this.totalActions,
});