CourseOffering constructor

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

Implementation

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