speak method

Future<bool?> speak(
  1. String text
)

Start speak utterance of the given text

If there's a running utterance, it will be stopped immediately and new utterance will starts

Implementation

Future<bool?> speak(String text) => TextToSpeechPlatform.instance.speak(text);