Stop GPS tracking.
Future<bool> stopTracking() async { try { final result = await _method.invokeMethod<bool>('stopTracking'); return result ?? false; } on PlatformException { rethrow; } }