Student constructor
Student({
- String? courseId,
- UserProfile? profile,
- DriveFolder? studentWorkFolder,
- String? userId,
Implementation
Student({
this.courseId,
this.profile,
this.studentWorkFolder,
this.userId,
});