redo method

void redo()

This command calls UndoManager#redo. This is normally invoked by the Ctrl-Y keyboard shortcut.

This method may be overridden, but you should consider calling this base method in order to get all of its functionality. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @see #canRedo

Implementation

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