onDidReceiveNotificationResponse static method

void onDidReceiveNotificationResponse(
  1. NotificationResponse notificationResponse
)

On did receive notification response

Implementation

static void onDidReceiveNotificationResponse(
    NotificationResponse notificationResponse) async {
  Function(NotificationResponse notificationResponse)?
      onDidReceiveNotificationResponse =
      Nylo.instance.getOnDidReceiveNotificationResponse();
  if (onDidReceiveNotificationResponse != null) {
    onDidReceiveNotificationResponse(notificationResponse);
  }
}