CourseOffering constructor

const CourseOffering({
  1. required int id,
  2. DateTime? fetchedAt,
  3. required int course,
  4. required int semester,
  5. required String number,
  6. required int phase,
  7. required CourseType courseType,
  8. String? status,
  9. String? language,
  10. String? remarks,
  11. int? enrolled,
  12. int? withdrawn,
  13. String? syllabusId,
  14. DateTime? syllabusUpdatedAt,
  15. String? objective,
  16. String? weeklyPlan,
  17. String? evaluation,
  18. String? textbooks,
})

Implementation

const CourseOffering({
  required this.id,
  this.fetchedAt,
  required this.course,
  required this.semester,
  required this.number,
  required this.phase,
  required this.courseType,
  this.status,
  this.language,
  this.remarks,
  this.enrolled,
  this.withdrawn,
  this.syllabusId,
  this.syllabusUpdatedAt,
  this.objective,
  this.weeklyPlan,
  this.evaluation,
  this.textbooks,
});