handleRemoteNotificationOpened method
Implementation
@override
void handleRemoteNotificationOpened() {
if (context != null && onRemoteNotificationOpened != null) {
ScreenController().executeAction(context!, onRemoteNotificationOpened!);
} else {
log('No context or action to handle remote notification');
}
}