Step constructor

Step({
  1. Timestamp? completionTime,
  2. Timestamp? creationTime,
  3. String? description,
  4. Duration? deviceUsageDuration,
  5. List<StepDimensionValueEntry>? dimensionValue,
  6. bool? hasImages,
  7. List<StepLabelsEntry>? labels,
  8. MultiStep? multiStep,
  9. String? name,
  10. Outcome? outcome,
  11. Duration? runDuration,
  12. String? state,
  13. String? stepId,
  14. TestExecutionStep? testExecutionStep,
  15. ToolExecutionStep? toolExecutionStep,
})

Implementation

Step({
  this.completionTime,
  this.creationTime,
  this.description,
  this.deviceUsageDuration,
  this.dimensionValue,
  this.hasImages,
  this.labels,
  this.multiStep,
  this.name,
  this.outcome,
  this.runDuration,
  this.state,
  this.stepId,
  this.testExecutionStep,
  this.toolExecutionStep,
});