AgentInfo constructor

AgentInfo({
  1. String? jobId,
  2. String? reportTime,
  3. String? state,
  4. String? taskGroupId,
  5. List<AgentTaskInfo>? tasks,
})

Implementation

AgentInfo({
  this.jobId,
  this.reportTime,
  this.state,
  this.taskGroupId,
  this.tasks,
});