commentSpacing property

num commentSpacing

Gets or sets the distance between comments.

The default value is 10.

This is used by #addComments and #layoutComments.

This sets the #rootDefaults' property of the same name.

Implementation

_i2.num get commentSpacing => _i4.getProperty(
      this,
      'commentSpacing',
    );
void commentSpacing=(num value)

Implementation

set commentSpacing(_i2.num value) {
  _i4.setProperty(
    this,
    'commentSpacing',
    value,
  );
}