alternateCommentSpacing property

num alternateCommentSpacing

Gets or sets the alternate distance between comments.

The default value is 10.

This is used by #addComments and #layoutComments. This sets the #alternateDefaults' property of the same name.

Implementation

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

Implementation

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