copyWith method
Implementation
SchedulesCompanion copyWith({
Value<int>? id,
Value<int>? courseOffering,
Value<DayOfWeek>? dayOfWeek,
Value<Period>? period,
}) {
return SchedulesCompanion(
id: id ?? this.id,
courseOffering: courseOffering ?? this.courseOffering,
dayOfWeek: dayOfWeek ?? this.dayOfWeek,
period: period ?? this.period,
);
}