AgentPanel constructor

const AgentPanel({
  1. Key? key,
  2. required List<AgentDisplayInfo> agents,
  3. SwarmDisplayInfo? swarm,
  4. VoidCallback? onClose,
  5. ValueChanged<String>? onCancelAgent,
  6. ValueChanged<String>? onCancelTask,
})

Implementation

const AgentPanel({
  super.key,
  required this.agents,
  this.swarm,
  this.onClose,
  this.onCancelAgent,
  this.onCancelTask,
});