I would like to know if there is any possible way to create an unstoppable notification in the flutter, so when user open the app, the notification will stop? Also, how can we make the notification so it will not get overridden by another app?
I would like to make the notification always ringing until the user opens the app.
If you read the Firebase documentation, you'll see there are two message types:
So notification messages are handled by the system, which only displays them when the app is not active. If the user is using the app, it doesn't display the notification but does deliver it to your code.
The easiest way to ensure the message is always displayed consistently, is to let your code handle its display. So send a data message, and write the code to handle foreground and background messages and display a local notification.