onDidReceiveBackgroundNotificationResponse function

void onDidReceiveBackgroundNotificationResponse(
  1. NotificationResponse details
)

Implementation

@pragma('vm:entry-point')
void onDidReceiveBackgroundNotificationResponse(NotificationResponse details)
{
  logCat( 'NotificationRepository:: IN onDidReceiveBackgroundNotificationResponse' );
  logCat( details );
  Get.find<NotificationController>().getNavigatorPushNamed(notificationResponse: details);
}