hide notification circular when call mark as read

This commit is contained in:
llsajjad
2025-09-27 13:35:05 +03:30
parent fa974bc4a2
commit 835a6f865d
2 changed files with 11 additions and 1 deletions
+7 -1
View File
@@ -220,8 +220,14 @@ class HomeViewModel with ChangeNotifier {
break;
case Error<Map<String, dynamic>>():
_hasUnreadNotification = false;
break;
break;
}
notifyListeners();
}
void serUnreadNotificationFalse(){
_hasUnreadNotification = false;
notifyListeners();
}
}