copyWith method
Implementation
Schedule copyWith({
int? id,
int? courseOffering,
DayOfWeek? dayOfWeek,
Period? period,
}) => Schedule(
id: id ?? this.id,
courseOffering: courseOffering ?? this.courseOffering,
dayOfWeek: dayOfWeek ?? this.dayOfWeek,
period: period ?? this.period,
);