Future _getCurrentUserLocation () async {final loCData = wartete locum (). GetLocation (); endgültige doppelte newlatitude = loCdata.latitude; endgültige doppelte Newlongitude = loCdata.Longitude;

Future<void> _getCurrentUserLocation () async {
  final locData = await Location().getLocation();
  final double newLatitude = locData.latitude;
  final double newLongitude = locData.longitude;
Calm Curlew