getZoneManager abstract method
ZoneManager instance, which could be used for working with zones and detecting enter and leave events. Zone
navigationManager NavigationManager instance
Returns ZoneManager instance
Example:
// Get ZoneManager for working with zones
if (_navigationManager != null) {
_zoneManager = _sdk?.getZoneManager(_navigationManager!);
if (_zoneManager != null) {
print('ZoneManager successfully initialized');
}
}
Implementation
ZoneManager getZoneManager(NavigationManager navigationManager);