Future _GetCurrentUserLocation () async {final locdata = attendre Location (). GetLocation (); Double NewLatitude final = locdata.latitude; Double newlongitude final = locdata.longitude;

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