Student constructor

Student({
  1. String? courseId,
  2. UserProfile? profile,
  3. DriveFolder? studentWorkFolder,
  4. String? userId,
})

Implementation

Student({
  this.courseId,
  this.profile,
  this.studentWorkFolder,
  this.userId,
});