copyWith method
Implementation
ChapterSnapshotResponseModel copyWith(
{String? chapterSnapshotId,
String? projectId,
String? chapterId,
int? createdAtUnix,
String? name}) {
return ChapterSnapshotResponseModel(
chapterSnapshotId: chapterSnapshotId ?? this.chapterSnapshotId,
projectId: projectId ?? this.projectId,
chapterId: chapterId ?? this.chapterId,
createdAtUnix: createdAtUnix ?? this.createdAtUnix,
name: name ?? this.name);
}