paddingLeft property

bool get paddingLeft

Render padding before the hint. Padding will use the editor's background color, not the background color of the hint itself. That means padding can be used to visually align/separate an inlay hint.

Implementation

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

Implementation

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