copyWith method
Implementation
KnowledgeBaseDocumentChunkResponseModel copyWith(
{String? id, String? name, String? content}) {
return KnowledgeBaseDocumentChunkResponseModel(
id: id ?? this.id,
name: name ?? this.name,
content: content ?? this.content);
}