undo method

void undo()

Reverse the effects of this object change. canUndo() must be true for this method to have any effect.

Implementation

void undo() {
  _i4.callMethod(
    this,
    'undo',
    [],
  );
}