copyWithWrapped method
Implementation
EditChapterResponseModel copyWithWrapped(
{Wrapped<ChapterWithContentResponseModel>? chapter}) {
return EditChapterResponseModel(
chapter: (chapter != null ? chapter.value : this.chapter));
}
EditChapterResponseModel copyWithWrapped(
{Wrapped<ChapterWithContentResponseModel>? chapter}) {
return EditChapterResponseModel(
chapter: (chapter != null ? chapter.value : this.chapter));
}