copyWith method
Implementation
ChapterSnapshotExtendedResponseModel copyWith(
{String? chapterSnapshotId,
String? projectId,
String? chapterId,
int? createdAtUnix,
String? name,
List<CharacterAlignmentModel>? characterAlignments}) {
return ChapterSnapshotExtendedResponseModel(
chapterSnapshotId: chapterSnapshotId ?? this.chapterSnapshotId,
projectId: projectId ?? this.projectId,
chapterId: chapterId ?? this.chapterId,
createdAtUnix: createdAtUnix ?? this.createdAtUnix,
name: name ?? this.name,
characterAlignments: characterAlignments ?? this.characterAlignments);
}