Syllabus constructor

const Syllabus({
  1. required int id,
  2. required int courseOffering,
  3. required int teacher,
  4. DateTime? updatedAt,
  5. String? objective,
  6. String? weeklyPlan,
  7. String? evaluation,
  8. String? textbooks,
  9. String? remarks,
})

Implementation

const Syllabus({
  required this.id,
  required this.courseOffering,
  required this.teacher,
  this.updatedAt,
  this.objective,
  this.weeklyPlan,
  this.evaluation,
  this.textbooks,
  this.remarks,
});