sendChar method

void sendChar(
  1. String char
)

Implementation

void sendChar(String char) {
  sendKeyEvent(KeyEvent(code: KeyCode.char, char: char));
}