initialized property

bool get initialized

Gets or sets whether this node has been initialized as part of TreeLayout#doLayout when building the tree structures.

The default value is false.

Implementation

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

Implementation

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