sendText method

void sendText(
  1. String text
)

Types text into the focused text field of the app.

Implementation

void sendText(String text) => _send(
  ByteWriter()
    ..u8(MessageType.textInput)
    ..string(text),
);