copyWithWrapped method
Implementation
ChapterSnapshotResponseModel copyWithWrapped(
{Wrapped<String>? chapterSnapshotId,
Wrapped<String>? projectId,
Wrapped<String>? chapterId,
Wrapped<int>? createdAtUnix,
Wrapped<String>? name}) {
return ChapterSnapshotResponseModel(
chapterSnapshotId: (chapterSnapshotId != null
? chapterSnapshotId.value
: this.chapterSnapshotId),
projectId: (projectId != null ? projectId.value : this.projectId),
chapterId: (chapterId != null ? chapterId.value : this.chapterId),
createdAtUnix:
(createdAtUnix != null ? createdAtUnix.value : this.createdAtUnix),
name: (name != null ? name.value : this.name));
}