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