ToolApprovalResponseContent constructor
ToolApprovalResponseContent({
- required String requestId,
- required bool approved,
- required ToolCallContent toolCall,
- String? reason,
- Object? rawRepresentation,
- AdditionalPropertiesDictionary? additionalProperties,
Creates a new ToolApprovalResponseContent.
Implementation
ToolApprovalResponseContent({
required super.requestId,
required this.approved,
required this.toolCall,
this.reason,
super.rawRepresentation,
super.additionalProperties,
});