Course constructor
Course({})
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,
});