SubagentOutput constructor

const SubagentOutput({
  1. required String agentId,
  2. required String result,
  3. required String status,
})

Implementation

const SubagentOutput({
  required this.agentId,
  required this.result,
  required this.status,
});