ToolUseContext constructor

const ToolUseContext({
  1. required String cwd,
  2. bool debugMode = false,
  3. AbortSignal? abortSignal,
  4. void onProgress(
    1. String
    )?,
})

Implementation

const ToolUseContext({
  required this.cwd,
  this.debugMode = false,
  this.abortSignal,
  this.onProgress,
});