getLocationManager abstract method

LocationManager getLocationManager()

LocationManager instance, which could be used for working with the Location. Returns LocationManager instance

Example:

// Get LocationManager for working with locations
_locationManager = _sdk?.getLocationManager();
if (_locationManager != null) {
 print('LocationManager successfully initialized');
}

Implementation

LocationManager getLocationManager();