copyWith method
Creates a copy with the given fields replaced.
Implementation
ToolCallsDetails copyWith({List<StepToolCall>? toolCalls}) {
return ToolCallsDetails(toolCalls: toolCalls ?? this.toolCalls);
}
Creates a copy with the given fields replaced.
ToolCallsDetails copyWith({List<StepToolCall>? toolCalls}) {
return ToolCallsDetails(toolCalls: toolCalls ?? this.toolCalls);
}