copyWith method

BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost copyWith({
  1. dynamic name,
  2. String? url,
  3. String? file,
})

Implementation

BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost copyWith(
    {dynamic name, String? url, String? file}) {
  return BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost(
      name: name ?? this.name, url: url ?? this.url, file: file ?? this.file);
}