copyWith method

BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost copyWith({
  1. dynamic name,
  2. dynamic content,
})

Implementation

BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost copyWith(
    {dynamic name, dynamic content}) {
  return BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost(
      name: name ?? this.name, content: content ?? this.content);
}