textInput method

void textInput(
  1. String text
)

Sends regular text input to the underlying program.

See also:

Implementation

void textInput(String text) {
  onOutput?.call(text);
}