selectionStart property

int? get selectionStart

Position in the text that the selection starts at.

Implementation

int? get selectionStart => _wrapped.selectionStart;
set selectionStart (int? v)

Implementation

set selectionStart(int? v) {
  _wrapped.selectionStart = v;
}