resetState method
Resets the inside state for all polygons.
Use this when restarting tracking or after significant location jumps.
Implementation
void resetState() {
for (final key in _insideState.keys) {
_insideState[key] = false;
}
debugPrint('[PolygonGeofenceService] Reset inside state');
}