undo method

Future<void> undo()

Undoes the last performed action.

Implementation

Future<void> undo() async {
  await _client.send('DOM.undo');
}