nickname changing

This commit is contained in:
55nknown
2022-11-15 09:00:38 +01:00
parent 82671f5ec9
commit f8cfa04d04
7 changed files with 14 additions and 4 deletions

View File

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