I am using:
flutter version 2.2
firebase_messaging: ^10.0.2
I receive push notification, then click on it and the app is opened.
Then I do not see FirebaseMessaging.onMessageOpenedApp.listen getting called (the callback is sending debug email to me, but I don't receive any)
My questions are
(optional) How can I debug android app with android studio debugur simulating case above, so app is killed not opened, then is opened via notification
What can be the issue here ? Why that stream is not triggered ? I initialise it in main.dart
PS: All other methods work fine, so if app is on foreground, onMessage.listen works great. I need to handle onMessageOpenedApp so I can redirect user to proper view based on notification information
