copyWith method
Implementation
SyllabusesCompanion copyWith({
Value<int>? id,
Value<int>? courseOffering,
Value<int>? teacher,
Value<DateTime?>? updatedAt,
Value<String?>? objective,
Value<String?>? weeklyPlan,
Value<String?>? evaluation,
Value<String?>? textbooks,
Value<String?>? remarks,
}) {
return SyllabusesCompanion(
id: id ?? this.id,
courseOffering: courseOffering ?? this.courseOffering,
teacher: teacher ?? this.teacher,
updatedAt: updatedAt ?? this.updatedAt,
objective: objective ?? this.objective,
weeklyPlan: weeklyPlan ?? this.weeklyPlan,
evaluation: evaluation ?? this.evaluation,
textbooks: textbooks ?? this.textbooks,
remarks: remarks ?? this.remarks,
);
}