public void Start(MvxLocationOptions options, Action <MvxGeoLocation> success, Action <MvxLocationError> error)
        {
            lock (this)
            {
                _locationCallback = success;
                _errorCallback    = error;

                PlatformSpecificStart(options);

                Started = true;
            }
        }
 protected abstract ValueTask PlatformSpecificStart(MvxLocationOptions options);
Esempio n. 3
0
 protected abstract void PlatformSpecificStart(MvxLocationOptions options);