mark single notification as read

This commit is contained in:
amirrezaghabeli
2025-09-28 14:28:18 +03:30
parent 4069c79fd9
commit 6e82f2c73f
6 changed files with 130 additions and 27 deletions
@@ -39,4 +39,10 @@ class NotificationsRepository {
offset: offset,
);
}
Future<Result<NotificationResponseModel>> markAsRead({
required String notificationId,
}) {
return _notificationsService.markAsRead(notificationId: notificationId);
}
}