paddingRight property

bool get paddingRight

Render padding after 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 paddingRight => _i5.getProperty(
      this,
      'paddingRight',
    );
set paddingRight (bool value)

Implementation

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