indentSize property

Object? get indentSize

The number of spaces to insert when {@link TextEditorOptions.insertSpaces insertSpaces} is true.

When getting a text editor's options, this property will always be a number (resolved). When setting a text editor's options, this property is optional and it can be a number or "tabSize".

Implementation

_i2.Object? get indentSize => _i5.getProperty(
      this,
      'indentSize',
    );
set indentSize (Object? value)

Implementation

set indentSize(_i2.Object? value) {
  _i5.setProperty(
    this,
    'indentSize',
    value ?? _i6.undefined,
  );
}