How to start specific screen when notification appear in flutter
问题 I am using firebase_messaging for notification, everyting is work fine. I have a video calling screen I want to start this screen on notification when app in background. It's working fine when application in foreground. here is my firebase integration code: final FirebaseMessaging _firebaseMessaging = FirebaseMessaging(); _firebaseMessaging.configure( onMessage: (Map<String, dynamic> message) async { Map data = message["data"]; if (data.isNotEmpty){ Fcm.startRinging(data); } else {