checkLocationPermissionWeb method
Implementation
Future<String> checkLocationPermissionWeb() async {
try {
// For web, we return 'denied' as default state since we can't check
// permission status without requesting it first
return 'denied';
} catch (e) {
return 'error';
}
}