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