moveTextCursorToEnd method

void moveTextCursorToEnd()

Implementation

void moveTextCursorToEnd() {
  final str = _textEditingController.text;
  _textEditingController.value = TextEditingValue(
      text: str, selection: TextSelection.collapsed(offset: str.length));
}