isRealtime property

bool? isRealtime

Gets or sets whether this layout be performed in real-time, before the end of a transaction. All layouts that are invalidated will be performed at the end of a transaction. The default value is null. A null value is treated as true for a Diagram#layout but false for a Group#layout. Setting this property does not invalidate this layout.

Implementation

_i2.bool? get isRealtime => _i4.getProperty(
      this,
      'isRealtime',
    );
void isRealtime=(bool? value)

Implementation

set isRealtime(_i2.bool? value) {
  _i4.setProperty(
    this,
    'isRealtime',
    value ?? _i5.undefined,
  );
}