goForward method

Future<void> goForward(
  1. int? tabId
)

Go foward to the next page, if one is available. tabId The ID of the tab to navigate forward; defaults to the selected tab of the current window.

Implementation

Future<void> goForward(int? tabId) async {
  await promiseToFuture<void>($js.chrome.tabs.goForward(tabId));
}