copyWithWrapped method

Implementation

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