writeChar method
Writes data to the terminal. Special characters are interpreted.
See also: Buffer.writeChar
Implementation
void writeChar(int codePoint) {
_queue.addLast(codePoint);
_processInput();
refresh();
}
Writes data to the terminal. Special characters are interpreted.
See also: Buffer.writeChar
void writeChar(int codePoint) {
_queue.addLast(codePoint);
_processInput();
refresh();
}