avoidable property

bool get avoidable

Gets or sets whether this Node is to be avoided by Links whose Link#routing is Link.AvoidsNodes.

The default value is true.

Implementation

_i2.bool get avoidable => _i4.getProperty(
      this,
      'avoidable',
    );
set avoidable (bool value)

Implementation

set avoidable(_i2.bool value) {
  _i4.setProperty(
    this,
    'avoidable',
    value,
  );
}