openNotificationSettingsWindows method
Open Windows notification settings
Implementation
@override
Future<void> openNotificationSettingsWindows() async {
try {
debugPrint('Opening Windows notification settings');
await methodChannel.invokeMethod('openNotificationSettingsWindows');
debugPrint('Windows notification settings opened successfully');
} on PlatformException catch (e) {
debugPrint('Error opening Windows notification settings: ${e.message}');
}
}