A callback handler to be invoked with the opened PushNotificationMessage.
AWS will end support for Amazon Pinpoint on October 30, 2026.
// Register a listener
onNotificationOpened(message => {
doSomething(message);
});
// Register multiple listeners
onNotificationOpened(message => {
doSomething(message);
});
onNotificationOpened(message => {
doSomethingElse(message);
});
Registers a listener that will be triggered when a notification is opened by user.