SetPopupDetails constructor

SetPopupDetails({
  1. required int tabId,
  2. required String popup,
})

Implementation

SetPopupDetails({
  /// The id of the tab for which you want to modify the page action.
  required int tabId,

  /// The relative path to the HTML file to show in a popup. If set to the
  /// empty string (`''`), no popup is shown.
  required String popup,
}) : _wrapped = $js.SetPopupDetails(
        tabId: tabId,
        popup: popup,
      );