isTransactionFinished property
      
      bool
      get
      isTransactionFinished
      
    
    
This read-only property is true when this ChangedEvent is of type ChangedEvent.Transaction and represents the end of a transactional change. It is implemented as:
return (this.change === ChangedEvent.Transaction &&
        (this.propertyName === "CommittedTransaction" ||
         this.propertyName === "FinishedUndo" ||
         this.propertyName === "FinishedRedo"));
Implementation
_i2.bool get isTransactionFinished => _i4.getProperty(
      this,
      'isTransactionFinished',
    );
      
      set
      isTransactionFinished
      (bool value) 
      
    
    
    
Implementation
set isTransactionFinished(_i2.bool value) {
  _i4.setProperty(
    this,
    'isTransactionFinished',
    value,
  );
}