handleRemoteNotificationOpened method

  1. @override
void handleRemoteNotificationOpened()
override

Implementation

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