fixed things and icon

This commit is contained in:
2026-08-22 16:09:05 +02:00
parent e87292dda7
commit a7e4c5f083
49 changed files with 626 additions and 160 deletions
+6 -1
View File
@@ -4,7 +4,12 @@ class School {
final String? logo;
final String? addressFull;
School({required this.id, required this.name, this.logo, this.addressFull});
const School({
required this.id,
required this.name,
this.logo,
this.addressFull,
});
factory School.fromJson(Map<String, dynamic> j) {
return School(