saveCurrentPosition function
Saves the current position to storage
Implementation
Future<void> saveCurrentPosition(double lat, double lng) async {
await prefs.setDouble('last_position_lat', lat);
await prefs.setDouble('last_position_lng', lng);
}