FunctionCallOutput.file constructor

FunctionCallOutput.file({
  1. required String callId,
  2. required InputFileContent output,
  3. FunctionToolCallStatus? status,
  4. String? id,
})

Implementation

FunctionCallOutput.file({
  required this.callId,
  required InputFileContent output,
  this.status,
  this.id,
})  : output = [output],
      super('function_call_output');