width property

num get width

Gets or sets the width of this vertex. This is always the horizontal distance reserved for the node.

Implementation

_i2.num get width => _i4.getProperty(
      this,
      'width',
    );
set width (num value)

Implementation

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