Future _getCurrentUserLocation () async {final locData = await ubicación (). GetLocation (); Doble final final NewLatitude = locData.latitude; Doble final final NewLongitude = locData. Longitude;

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