removeLast method
Removes the last character (ignoring cursor position).
Implementation
bool removeLast() {
moveCursorToEnd();
return backspace();
}
Removes the last character (ignoring cursor position).
bool removeLast() {
moveCursorToEnd();
return backspace();
}