stopNativeTracking method
Stops native location tracking.
Implementation
@override
Future<void> stopNativeTracking() async {
try {
await methodChannel.invokeMethod('stopTracking');
} on PlatformException catch (e) {
throw LocationPlatformException(
message: e.message ?? 'Failed to stop tracking',
code: e.code,
);
}
}