SpeculationStageSummary constructor

SpeculationStageSummary({
  1. int? numActiveTasks,
  2. int? numCompletedTasks,
  3. int? numFailedTasks,
  4. int? numKilledTasks,
  5. int? numTasks,
  6. int? stageAttemptId,
  7. String? stageId,
})

Implementation

SpeculationStageSummary({
  this.numActiveTasks,
  this.numCompletedTasks,
  this.numFailedTasks,
  this.numKilledTasks,
  this.numTasks,
  this.stageAttemptId,
  this.stageId,
});