copyWith method
AgentConfigDBModel
copyWith({
- String? firstMessage,
- String? language,
- DynamicVariablesConfig? dynamicVariables,
- PromptAgentDBModel? prompt,
Implementation
AgentConfigDBModel copyWith(
{String? firstMessage,
String? language,
DynamicVariablesConfig? dynamicVariables,
PromptAgentDBModel? prompt}) {
return AgentConfigDBModel(
firstMessage: firstMessage ?? this.firstMessage,
language: language ?? this.language,
dynamicVariables: dynamicVariables ?? this.dynamicVariables,
prompt: prompt ?? this.prompt);
}