moveCursorToEnd method

void moveCursorToEnd()

Implementation

void moveCursorToEnd() {
  var text = this._lastUpdatedText;
  this.selection = new TextSelection.fromPosition(new TextPosition(offset: (text).length));
}