Step constructor

Step({
  1. required DateTime endTime,
  2. required DateTime startTime,
  3. required JobStatus status,
  4. required String stepName,
  5. String? artifactsUrl,
  6. String? context,
  7. String? logUrl,
  8. Map<String, String>? screenshots,
  9. String? statusReason,
  10. String? testArtifactsUrl,
  11. String? testConfigUrl,
})

Implementation

Step({
  required this.endTime,
  required this.startTime,
  required this.status,
  required this.stepName,
  this.artifactsUrl,
  this.context,
  this.logUrl,
  this.screenshots,
  this.statusReason,
  this.testArtifactsUrl,
  this.testConfigUrl,
});