copyWith method
Implementation
SemestersCompanion copyWith({
Value<int>? id,
Value<int>? year,
Value<int>? term,
Value<DateTime?>? courseTableFetchedAt,
}) {
return SemestersCompanion(
id: id ?? this.id,
year: year ?? this.year,
term: term ?? this.term,
courseTableFetchedAt: courseTableFetchedAt ?? this.courseTableFetchedAt,
);
}