Future _getCurrentUserLocation () Async {final Locdata = Atave Location (). GetLocation (); Ostateczna podwójna newlatitude = locdata.latitude; Ostateczne podwójne newlongitude = locdata.longitude;
Future<void> _getCurrentUserLocation () async {
final locData = await Location().getLocation();
final double newLatitude = locData.latitude;
final double newLongitude = locData.longitude;
Calm Curlew