changes property

List<LevitReactiveChange> get changes

Returns an unmodifiable list of all recorded changes in the undo stack.

Implementation

List<LevitReactiveChange> get changes {
  _version.value;
  return List.unmodifiable(_undoStack);
}