CourseNotify constructor

CourseNotify({
  1. required int id,
  2. required int weekday,
  3. required String startTime,
  4. String? title,
  5. String? location,
  6. String? code,
})

Implementation

CourseNotify({
  required this.id,
  required this.weekday,
  required this.startTime,
  this.title,
  this.location,
  this.code,
});