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