Choice.fromJson constructor
Construit un Choice
à partir d'un objet JSON et d’un étudiant donné.
Implementation
factory Choice.fromJson(Map<String,dynamic> json, Student student){
School school = School.fromJson(json[jsonSchool]);
return Choice(school, json[jsonInterranking], student);
}