preselect property

bool get preselect

Select this item when showing. Note that only one completion item can be selected and that the editor decides which item that is. The rule is that the first item of those that match best is selected.

Implementation

_i2.bool get preselect => _i5.getProperty(
      this,
      'preselect',
    );
set preselect (bool value)

Implementation

set preselect(_i2.bool value) {
  _i5.setProperty(
    this,
    'preselect',
    value,
  );
}