anchor property

int get anchor

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

Implementation

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

Implementation

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