Gets the cursor position.
int get position => _pos;
Sets the cursor position.
set position(int pos) { _pos = pos.clamp(0, _value.length); _handleOverflow(); }