I am sending notification with firebase, when click on notification I want to redirect to a page in webview, how can I do that?
FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessagemessage) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ,
));
});
2
Answers
You can check the answer here. The
click_action
payload should help your use case.