copyWithWrapped method
ChapterContentResponseModel
copyWithWrapped({
- Wrapped<
List< ? blocks,ChapterContentBlockResponseModel> >
Implementation
ChapterContentResponseModel copyWithWrapped(
{Wrapped<List<ChapterContentBlockResponseModel>>? blocks}) {
return ChapterContentResponseModel(
blocks: (blocks != null ? blocks.value : this.blocks));
}