copyWithWrapped method
ChapterSnapshotsResponseModel
copyWithWrapped({
- Wrapped<
List< ? snapshots,ChapterSnapshotResponseModel> >
Implementation
ChapterSnapshotsResponseModel copyWithWrapped(
{Wrapped<List<ChapterSnapshotResponseModel>>? snapshots}) {
return ChapterSnapshotsResponseModel(
snapshots: (snapshots != null ? snapshots.value : this.snapshots));
}