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