selectionEnd property
int?
get
selectionEnd
Position in the text that the selection ends at.
Implementation
int? get selectionEnd => _wrapped.selectionEnd;
set
selectionEnd
(int? v)
Implementation
set selectionEnd(int? v) {
_wrapped.selectionEnd = v;
}