spacing property

Size get spacing

Gets or sets the minimum horizontal and vertical space between parts.

The default value is 10 x 10. The units are in document coordinates.

Implementation

_i3.Size get spacing => _i4.getProperty(
      this,
      'spacing',
    );
set spacing (Size value)

Implementation

set spacing(_i3.Size value) {
  _i4.setProperty(
    this,
    'spacing',
    value,
  );
}