moveCursorToEnd method

void moveCursorToEnd()

Implementation

void moveCursorToEnd() {
  updateSelection(
      TextSelection.collapsed(offset: plainTextEditingValue.text.length),
      ChangeSource.LOCAL);
}