FunctionCallOutput.image constructor

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

Implementation

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