layerSpacing property

num layerSpacing

Gets or sets the space between each layer. This value must be non-negative and it defaults to 25.

Implementation

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

Implementation

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