append method

void append(
  1. String text
)

Appends text to the end (ignoring cursor position).

Implementation

void append(String text) {
  moveCursorToEnd();
  insertText(text);
}