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