copyWithWrapped method

Implementation

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