focus property

int get focus

The ending position of the selection. This value indicates caret position if there is no selection.

Implementation

int get focus => _wrapped.focus;
set focus (int v)

Implementation

set focus(int v) {
  _wrapped.focus = v;
}