toggleIsUserSelected method

void toggleIsUserSelected()

Changes isUserSelected to the opposite value of its current one and calls notifyListeners

Implementation

void toggleIsUserSelected(){
  isUserSelected = !isUserSelected;
  notifyListeners();
}