copyWith method

Implementation

ChapterSnapshotsResponseModel copyWith(
    {List<ChapterSnapshotResponseModel>? snapshots}) {
  return ChapterSnapshotsResponseModel(
      snapshots: snapshots ?? this.snapshots);
}