offset property
int
get
offset
The offset position of text. Since text only includes a subset of text
around the cursor, offset indicates the absolute position of the first
character of text.
Implementation
int get offset => _wrapped.offset;
set
offset
(int v)
Implementation
set offset(int v) {
_wrapped.offset = v;
}