onDidReceiveNotificationResponse static method
void
onDidReceiveNotificationResponse(
- 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);
}
}