getNotificationManager abstract method

NotificationManager getNotificationManager(
  1. LocationManager locationManager
)

NotificationManager instance, which could be used for working with notifications when detecting beacons. Notification locationManager LocationManager instance Returns NotificationManager instance

Example:

// Get NotificationManager for notifications
if (_locationManager != null) {
 _notificationManager = _sdk?.getNotificationManager(_locationManager!);
 if (_notificationManager != null) {
   print('NotificationManager successfully initialized');
 }
}

Implementation

NotificationManager getNotificationManager(LocationManager locationManager);