isComplete property

bool isComplete

Gets or sets whether we can add more ChangedEvents to this list of changes. This is initially false. It is set to true by UndoManager#commitTransaction and UndoManager#rollbackTransaction.

Implementation

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

Implementation

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