SetPopupDetails constructor

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

Implementation

SetPopupDetails({
  /// Limits the change to when a particular tab is selected. Automatically
  /// resets when the tab is closed.
  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,
      );