This commit is contained in:
unknown
2021-09-11 18:40:11 +02:00
parent 2047784d8f
commit f5be03e5ce

View File

@@ -13,6 +13,7 @@ class UserProvider with ChangeNotifier {
String? get name => user?.name;
String? get username => user?.username;
String? get password => user?.password;
Role? get role => user?.role;
Student? get student => user?.student;
void setUser(String userId) {