In order to use expo-notifications, I use this approach:
-show an onboarding screen where user can accept to receive the notifications
-if the user accepted to receive the notifications, I will call the getExpoPushTokenAsync() to get the expo push notifications token, then will store it in the database with the customer id.
The issue is that I have an option where the user can choose to not receive the notifications anymore, and I need to remove the push notifications token from the Expo server. I didn't find any "removeExpoPushToken" method on the expo-notifications. Do you have any idea if this could be done?
P.S: I don't want to remove it from the database, I will just need to remove it from Expo, so when I try to send notifications based on that token, I should get invalid push notifications token.