notificationTapBackground static method

void notificationTapBackground(
  1. NotificationResponse notificationResponse
)

Implementation

@pragma('vm:entry-point')
static void notificationTapBackground(
    NotificationResponse notificationResponse) {
  Function(NotificationResponse notificationResponse)?
      onDidReceiveBackgroundNotificationResponse =
      Nylo.instance.getOnDidReceiveBackgroundNotificationResponse();
  if (onDidReceiveBackgroundNotificationResponse != null) {
    onDidReceiveBackgroundNotificationResponse(notificationResponse);
  }
}