openAppSettings static method
Open app settings for app-specific settings
Implementation
static Future<void> openAppSettings() async {
try {
await Geolocator.openAppSettings();
} catch (e) {
print('Error opening app settings: $e');
}
}
Open app settings for app-specific settings
static Future<void> openAppSettings() async {
try {
await Geolocator.openAppSettings();
} catch (e) {
print('Error opening app settings: $e');
}
}