moveTextCursorToEnd method

void moveTextCursorToEnd()

Implementation

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