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