handleRemoteNotification method

  1. @override
void handleRemoteNotification()
override

Implementation

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