FunctionApprovalResponseContent constructor
FunctionApprovalResponseContent({
- required String id,
- required bool approved,
- required FunctionCallContent functionCall,
- String? reason,
- Object? rawRepresentation,
- AdditionalPropertiesDictionary? additionalProperties,
Creates a new FunctionApprovalResponseContent.
Implementation
FunctionApprovalResponseContent({
required super.id,
required this.approved,
required this.functionCall,
this.reason,
super.rawRepresentation,
super.additionalProperties,
});