copyWithWrapped method
Implementation
GetChaptersResponseModel copyWithWrapped(
{Wrapped<List<ChapterResponseModel>>? chapters}) {
return GetChaptersResponseModel(
chapters: (chapters != null ? chapters.value : this.chapters));
}
GetChaptersResponseModel copyWithWrapped(
{Wrapped<List<ChapterResponseModel>>? chapters}) {
return GetChaptersResponseModel(
chapters: (chapters != null ? chapters.value : this.chapters));
}