CourseOffering constructor
const
CourseOffering({ - required int id,
- DateTime? fetchedAt,
- required int course,
- required int semester,
- required String number,
- required int phase,
- required CourseType courseType,
- String? status,
- String? language,
- int? enrolled,
- int? withdrawn,
- String? syllabusId,
- DateTime? syllabusUpdatedAt,
- String? objective,
- String? weeklyPlan,
- String? evaluation,
- 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,
});