copyWithWrapped method

Implementation

BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost copyWithWrapped(
    {Wrapped<String>? text, Wrapped<dynamic>? name}) {
  return BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost(
      text: (text != null ? text.value : this.text),
      name: (name != null ? name.value : this.name));
}