copyWith method

BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost copyWith({
  1. String? text,
  2. dynamic name,
})

Implementation

BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost copyWith(
    {String? text, dynamic name}) {
  return BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost(
      text: text ?? this.text, name: name ?? this.name);
}