copyWith method
Implementation
ScoresCompanion copyWith({
Value<int>? id,
Value<int>? user,
Value<int>? semester,
Value<int>? course,
Value<int?>? courseOffering,
Value<int?>? score,
Value<ScoreStatus?>? status,
}) {
return ScoresCompanion(
id: id ?? this.id,
user: user ?? this.user,
semester: semester ?? this.semester,
course: course ?? this.course,
courseOffering: courseOffering ?? this.courseOffering,
score: score ?? this.score,
status: status ?? this.status,
);
}