UserRegistration constructor
- required int year,
- required int term,
- String? className,
- EnrollmentStatus? enrollmentStatus,
- bool? graduated,
Implementation
const UserRegistration({
required this.year,
required this.term,
this.className,
this.enrollmentStatus,
this.graduated,
});