onSelectNotification static method

dynamic onSelectNotification(
  1. NotificationResponse notificationResponse
)

Implementation

static onSelectNotification(NotificationResponse notificationResponse) async {
  if (notificationResponse.id == null) return;
  await stopAlarm(notificationResponse.id!);
}