selectionStart property

num? get selectionStart

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

Implementation

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

Implementation

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