I want to handle notification on tap when app in foreground or background then redirect to specific page, I use audio_service plugin to handle background audio, can this plugin handle it?
You can listen to notification click events via one of the following streams:
AudioService.notificationClickEventStream
AudioService.notificationClicked
For example:
AudioService.notificationClicked.listen((clicked) {
if (clicked) {
// Navigate to the right page based on your app's state
}
});