openSystemSettings method
Opens the system settings at the top level.
Implementation
@override
Future<bool> openSystemSettings() async {
try {
final result = await methodChannel.invokeMethod<bool>('openSystemSettings');
return result ?? false;
} on PlatformException catch (e) {
debugPrint('[OpenSettingsPanel] Error opening system settings: ${e.message}');
return false;
}
}