setActiveUser method
- int? a
Assigns the argument a to activeUser and calls notifyListeners
Implementation
void setActiveUser(int? a){
activeUser = a;
notifyListeners();
}
Assigns the argument a to activeUser and calls notifyListeners
void setActiveUser(int? a){
activeUser = a;
notifyListeners();
}