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