forceRestart method

Future<void> forceRestart()

Force-restarts the GPS stream. Call after app resume — iOS kills the underlying CLLocationManager when backgrounded, leaving the old subscription as a dead shell. Safe to call on Android (harmless restart).

Implementation

Future<void> forceRestart() async {
  stopTracking();
  await startTracking();
}