BashToolOutput constructor
const
BashToolOutput({
- required String stdout,
- String stderr = '',
- required int exitCode,
- bool interrupted = false,
- bool isImage = false,
- String? backgroundTaskId,
- bool backgroundedByUser = false,
- bool assistantAutoBackgrounded = false,
- String? returnCodeInterpretation,
- bool noOutputExpected = false,
- String? persistedOutputPath,
- int? persistedOutputSize,
Implementation
const BashToolOutput({
required this.stdout,
this.stderr = '',
required this.exitCode,
this.interrupted = false,
this.isImage = false,
this.backgroundTaskId,
this.backgroundedByUser = false,
this.assistantAutoBackgrounded = false,
this.returnCodeInterpretation,
this.noOutputExpected = false,
this.persistedOutputPath,
this.persistedOutputSize,
});