getLocationPermission method
Implementation
bool getLocationPermission() {
final storedValue = _getValue(AppConstants.locationPermission);
if (storedValue is String) {
return storedValue.toLowerCase() == 'true' ? true : false;
}
return false;
}