Student constructor

Student(
  1. String studentId,
  2. int gymId, {
  3. String? info,
  4. bool teacher = false,
})

Implementation

Student(this.studentId, this.gymId, {this.info, this.teacher = false}) {
  homework = HomeworkController(this);
  gyms = GymController();
  classes = ClassesController(this);
  messages = MesssageController(this);
  events = EventController(this);
  assignments = AssignmentsController(this);
  weeks = WeekController(this);
  absence = AbsenceController(this);
  grades = GradeController(this);
  context = ContextController(this);
  meta = MessageMetaController(this);
  students = StudentsController(this);
  rooms = RoomsController(this);
  plans = PlansController(this);
  teams = TeamsController(this);
  terms = TermsController(this);
  kort = StudiekortController(this);
}