Job constructor

Job({
  1. JobConfig? config,
  2. String? createTime,
  3. String? endTime,
  4. List<FailureDetail>? failureDetails,
  5. String? failureReason,
  6. String? inputUri,
  7. String? name,
  8. OriginUri? originUri,
  9. String? outputUri,
  10. int? priority,
  11. Progress? progress,
  12. String? startTime,
  13. String? state,
  14. String? templateId,
  15. int? ttlAfterCompletionDays,
})

Implementation

Job({
  this.config,
  this.createTime,
  this.endTime,
  this.failureDetails,
  this.failureReason,
  this.inputUri,
  this.name,
  this.originUri,
  this.outputUri,
  this.priority,
  this.progress,
  this.startTime,
  this.state,
  this.templateId,
  this.ttlAfterCompletionDays,
});