removed on-device STT, as android and ios already have on-device STT built into the keyboard.

This commit is contained in:
Joshua
2024-07-10 13:57:10 -06:00
parent 711991c7bf
commit 5d2e162da8
2 changed files with 1 additions and 35 deletions
+1 -1
View File
@@ -39,5 +39,5 @@ class SpeechToText {
/// This is the callback that the SpeechToText plugin calls when
/// the platform returns recognized words.
String onSpeechResult(SpeechRecognitionResult result) => (text = result.recognizedWords);
void onSpeechResult(SpeechRecognitionResult result) => (text = result.recognizedWords);
}