TaskObject constructor

TaskObject({
  1. String? attemptId,
  2. Map<String, PipelineObject>? objects,
  3. String? pipelineId,
  4. String? taskId,
})

Implementation

TaskObject({
  this.attemptId,
  this.objects,
  this.pipelineId,
  this.taskId,
});