WorkflowConfig constructor

const WorkflowConfig({
  1. required TrackerWorkflowConfig tracker,
  2. required PollingWorkflowConfig polling,
  3. required WorkspaceWorkflowConfig workspace,
  4. required HooksWorkflowConfig hooks,
  5. required AgentWorkflowConfig agent,
  6. required CodexWorkflowConfig codex,
  7. required ServerWorkflowConfig server,
})

Creates a typed workflow config.

Implementation

const WorkflowConfig({
  required this.tracker,
  required this.polling,
  required this.workspace,
  required this.hooks,
  required this.agent,
  required this.codex,
  required this.server,
});