OnActivatedActiveInfo constructor

OnActivatedActiveInfo({
  1. required int tabId,
  2. required int windowId,
})

Implementation

OnActivatedActiveInfo({
  /// The ID of the tab that has become active.
  required int tabId,

  /// The ID of the window the active tab changed inside of.
  required int windowId,
}) : _wrapped = $js.OnActivatedActiveInfo(
        tabId: tabId,
        windowId: windowId,
      );