selectionStart property

num selectionStart

Gets or sets the starting position or offset of a text selection.

Implementation

_i2.num get selectionStart => _i4.getProperty(
      this,
      'selectionStart',
    );
void selectionStart=(num value)

Implementation

set selectionStart(_i2.num value) {
  _i4.setProperty(
    this,
    'selectionStart',
    value,
  );
}