selection property

Selection get selection

The primary selection on this text editor. Shorthand for TextEditor.selections[0].

Implementation

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

Implementation

set selection(_i3.Selection value) {
  _i5.setProperty(
    this,
    'selection',
    value,
  );
}