Job constructor

Job({
  1. AdvanceChildRolloutJob? advanceChildRolloutJob,
  2. CreateChildRolloutJob? createChildRolloutJob,
  3. DeployJob? deployJob,
  4. String? id,
  5. String? jobRun,
  6. PostdeployJob? postdeployJob,
  7. PredeployJob? predeployJob,
  8. String? skipMessage,
  9. String? state,
  10. VerifyJob? verifyJob,
})

Implementation

Job({
  this.advanceChildRolloutJob,
  this.createChildRolloutJob,
  this.deployJob,
  this.id,
  this.jobRun,
  this.postdeployJob,
  this.predeployJob,
  this.skipMessage,
  this.state,
  this.verifyJob,
});