copyWith method

KnowledgeBaseDocumentChunkResponseModel copyWith({
  1. String? id,
  2. String? name,
  3. String? content,
})

Implementation

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