sendText static method

void sendText(
  1. String text
)

Sends text arguments: text - given text string

Implementation

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