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