JobStatus constructor

const JobStatus({
  1. int? active,
  2. String? completedIndexes,
  3. DateTime? completionTime,
  4. List<JobCondition>? conditions,
  5. int? failed,
  6. int? ready,
  7. DateTime? startTime,
  8. int? succeeded,
  9. UncountedTerminatedPods? uncountedTerminatedPods,
})

Default constructor.

Implementation

const JobStatus({
  this.active,
  this.completedIndexes,
  this.completionTime,
  this.conditions,
  this.failed,
  this.ready,
  this.startTime,
  this.succeeded,
  this.uncountedTerminatedPods,
});