addNotificationOpenAction static method
Implementation
static StreamSubscription addNotificationOpenAction(
NotificationOpenAction action) {
return _onNotificationClicked.listen((ClickedNotificationWrapper clicked) {
if (!clicked.handled) {
final handled = action(clicked.clickedNotification);
clicked.handled = handled;
}
});
}