Step 1: Add the geolocator Package
Step 2: Add Permissions Android Configuration Add these permissions to your android/app/src/main/AndroidManifest.xml:
Step 3: Implement the Geolocation Fetching Method void geolocater() async { await Geolocator.checkPermission(); await Geolocator.requestPermission(); Position position = await Geolocator.getCurrentPosition( desiredAccuracy: LocationAccuracy.low ); print('Current Position: ${position.latitude}, ${position.longitude}'); }