This commit is contained in:
Kima
2024-05-12 12:10:34 +02:00
parent 308c8f966f
commit c205bc592c
3 changed files with 10 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ class Student {
String? address;
String? groupId;
List<String> parents;
// List<String> parentsPhone;
String? className;
Student({
@@ -21,6 +22,7 @@ class Student {
required this.yearId,
this.address,
required this.parents,
// required this.parentsPhone,
this.json,
});