onRetenoNotificationClicked property
A static getter that provides a Stream of notifications clicked by the user in foreground and background states.
This Stream emits Map objects containing notification data in the form of key-value pairs, where keys are strings and values are dynamic types. You can use this stream to listen for notifications that the user has clicked on in your Flutter application and take appropriate actions based on the clicked notification.
Example usage:
Reteno.onRetenoNotificationClicked.listen((notification) {
// Handle the clicked notification here
print("Clicked notification: $notification");
});
Implementation
static Stream<Map<String, dynamic>> get onRetenoNotificationClicked => _platform.onRetenoNotificationClicked.stream;