I’m asking users to grant permission for location, but I came to know that this permission is used to access location if location is enabled on the phone. I actually want to scan bluetooth devices and I’m using flutter blue plus package.
await Permission.location.isGranted;
So I want to check whether location is enabled, if not I want a pop up asking the user for the location in a similar manner to how we ask for bluetooth.
So I want it to be done on a flutter project.
I’m expecting a clear cut solution.
Thanks in advance.