Course constructor

Course({
  1. required String code,
  2. required String title,
  3. String? className,
  4. String? group,
  5. required String? units,
  6. String? hours,
  7. String? required,
  8. String? at,
  9. required List<SectionTime> times,
  10. Location? location,
  11. required List<String> instructors,
})

Implementation

Course({
  required this.code,
  required this.title,
  this.className,
  this.group,
  required this.units,
  this.hours,
  this.required,
  this.at,
  required this.times,
  this.location,
  required this.instructors,
});