copyWith method

Implementation

ChapterContentResponseModel copyWith(
    {List<ChapterContentBlockResponseModel>? blocks}) {
  return ChapterContentResponseModel(blocks: blocks ?? this.blocks);
}