copyWith method

Implementation

ChapterContentInputModel copyWith(
    {List<ChapterContentBlockInputModel>? blocks}) {
  return ChapterContentInputModel(blocks: blocks ?? this.blocks);
}