openAppSettings method
Open app settings
Implementation
Future<bool> openAppSettings() async {
try {
return await geo.Geolocator.openAppSettings();
} catch (e) {
_errorController.add('Failed to open app settings: $e');
return false;
}
}