Speech To Text Google

This package is implemented to display the Google speech to text dialog. There is no need to get any permission from the user for this. This package is currently available on Android.

DemoAndroid

Usage

Example

This example shows how to display a google speech to text dialog and get the result.

bool isServiceAvailable = await SpeechToTextGoogle.getInstance()
                    .showGoogleDialog(onTextReceived: (data) {
                },
                  // locale: "en-US",
);