getNavigationHistory method
Returns navigation history for the current page.
Implementation
Future<GetNavigationHistoryResult> getNavigationHistory() async {
var result = await _client.send('Page.getNavigationHistory');
return GetNavigationHistoryResult.fromJson(result);
}