navigateToHistoryEntry method
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,
});
}