I am trying to find where my print statements go do. I have this code, but I don't get any output anywhere. It's a newbie question, I realize.
Future getCurrentLocation() async { // I want to display the currentlocation. // Get the current location Position position = await Geolocator.getCurrentPosition( desiredAccuracy: LocationAccuracy.high, ); // Display the current location print('Current location: ${position.latitude}, ${position.longitude}'); }