setNotificationEventsFilter static method

Future<void> setNotificationEventsFilter(
  1. NotificationEventFilter? filter
)

Sets filter for notification events.

Set null if you want to remove filter.

Implementation

static Future<void> setNotificationEventsFilter(
    NotificationEventFilter? filter) async {
  _notificationsTracker.filter = filter;
}