copyWith method

Implementation

EditChapterResponseModel copyWith(
    {ChapterWithContentResponseModel? chapter}) {
  return EditChapterResponseModel(chapter: chapter ?? this.chapter);
}