show method

Future<void> show(
  1. int tabId
)

Shows the page action. The page action is shown whenever the tab is selected. tabId The id of the tab for which you want to modify the page action.

Implementation

Future<void> show(int tabId) async {
  await promiseToFuture<void>($js.chrome.pageAction.show(tabId));
}