playText static method

void playText(
  1. String text
)

Plays text arguments: text - given text string

Implementation

static void playText(String text) async {
  _channel.invokeMethod('playText', <String, String>{"text": text});
}