CourseOfferingOverview constructor
const
CourseOfferingOverview({ - required int id,
- String? courseCode,
- required int semester,
- String? number,
- String? nameZh,
- String? nameEn,
- double? credits,
- int? hours,
- int? phase,
- CourseType? courseType,
- String? status,
- String? language,
- int? enrolled,
- int? withdrawn,
- DateTime? fetchedAt,
- DateTime? syllabusUpdatedAt,
- String? objective,
- String? weeklyPlan,
- String? evaluation,
- String? textbooks,
})
Implementation
const CourseOfferingOverview({
required this.id,
this.courseCode,
required this.semester,
this.number,
this.nameZh,
this.nameEn,
this.credits,
this.hours,
this.phase,
this.courseType,
this.status,
this.language,
this.remarks,
this.enrolled,
this.withdrawn,
this.fetchedAt,
this.syllabusUpdatedAt,
this.objective,
this.weeklyPlan,
this.evaluation,
this.textbooks,
this.syllabusRemarks,
});