Student constructor

Student(
  1. int id,
  2. String name,
  3. Map<int, Choice> choices,
  4. String specialization,
  5. int ranking_s1,
  6. int ects_number,
  7. String lang_lvl,
  8. double missed_hours,
  9. String comment,
)

Constructeur principal du modèle Student.

Implementation

Student(this.id, this.name, this.choices, this.specialization,
    this.ranking_s1, this.ects_number, this.lang_lvl, this.missed_hours,
    this.comment) {
  year_departement(specialization);
}