copyWith method
Implementation
AddKnowledgeBaseResponseModel copyWith(
{String? id, String? name, bool? promptInjectable}) {
return AddKnowledgeBaseResponseModel(
id: id ?? this.id,
name: name ?? this.name,
promptInjectable: promptInjectable ?? this.promptInjectable);
}