filterNotificationEvent method

NotificationEvent filterNotificationEvent(
  1. NotificationEvent notificationEvent
)

Implementation

NotificationEvent filterNotificationEvent(
    NotificationEvent notificationEvent) {
  if (filter != null) {
    notificationEvent = filter!(notificationEvent);
  }

  return notificationEvent;
}