redo method

Future<void> redo()

Re-does the last undone action.

Implementation

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