keepWhitespace property

bool get keepWhitespace

Keep whitespace of the {@link CompletionItem.insertText insertText} as is. By default, the editor adjusts leading whitespace of new lines so that they match the indentation of the line for which the item is accepted - setting this to true will prevent that.

Implementation

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

Implementation

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