copyWithWrapped method
Implementation
ProjectSnapshotExtendedResponseModel copyWithWrapped(
{Wrapped<String>? projectSnapshotId,
Wrapped<String>? projectId,
Wrapped<int>? createdAtUnix,
Wrapped<String>? name,
Wrapped<dynamic>? audioUpload,
Wrapped<dynamic>? zipUpload,
Wrapped<List<CharacterAlignmentModel>>? characterAlignments}) {
return ProjectSnapshotExtendedResponseModel(
projectSnapshotId: (projectSnapshotId != null
? projectSnapshotId.value
: this.projectSnapshotId),
projectId: (projectId != null ? projectId.value : this.projectId),
createdAtUnix:
(createdAtUnix != null ? createdAtUnix.value : this.createdAtUnix),
name: (name != null ? name.value : this.name),
audioUpload:
(audioUpload != null ? audioUpload.value : this.audioUpload),
zipUpload: (zipUpload != null ? zipUpload.value : this.zipUpload),
characterAlignments: (characterAlignments != null
? characterAlignments.value
: this.characterAlignments));
}