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