selection property

Range? get selection

An optional selection to apply for the document in the {@link TextEditor editor}.

Implementation

_i3.Range? get selection => _i5.getProperty(
      this,
      'selection',
    );
set selection (Range? value)

Implementation

set selection(_i3.Range? value) {
  _i5.setProperty(
    this,
    'selection',
    value ?? _i6.undefined,
  );
}