navigateToHistoryEntry method

Future<void> navigateToHistoryEntry(
  1. int entryId
)

Navigates current page to the given history entry. entryId Unique id of the entry to navigate to.

Implementation

Future<void> navigateToHistoryEntry(int entryId) async {
  await _client.send('Page.navigateToHistoryEntry', {
    'entryId': entryId,
  });
}