class AlunoModel{ String nome; String foto; String ra; String escola; int idade; int anoEscolar; AlunoModel({ required this.nome, required this.foto, required this.ra, required this.escola, required this.idade, required this.anoEscolar, }); }