SyllabusesCompanion.insert constructor
SyllabusesCompanion.insert({ - Value<int> id = const Value.absent(),
- required int courseOffering,
- required int teacher,
- Value<DateTime?> updatedAt = const Value.absent(),
- Value<String?> objective = const Value.absent(),
- Value<String?> weeklyPlan = const Value.absent(),
- Value<String?> evaluation = const Value.absent(),
- Value<String?> textbooks = const Value.absent(),
})
Implementation
SyllabusesCompanion.insert({
this.id = const Value.absent(),
required int courseOffering,
required int teacher,
this.updatedAt = const Value.absent(),
this.objective = const Value.absent(),
this.weeklyPlan = const Value.absent(),
this.evaluation = const Value.absent(),
this.textbooks = const Value.absent(),
this.remarks = const Value.absent(),
}) : courseOffering = Value(courseOffering),
teacher = Value(teacher);