OnTabReplacedDetails constructor

OnTabReplacedDetails({
  1. required int replacedTabId,
  2. required int tabId,
  3. required double timeStamp,
})

Implementation

OnTabReplacedDetails({
  /// The ID of the tab that was replaced.
  required int replacedTabId,

  /// The ID of the tab that replaced the old tab.
  required int tabId,

  /// The time when the replacement happened, in milliseconds since the epoch.
  required double timeStamp,
}) : _wrapped = $js.OnTabReplacedDetails(
        replacedTabId: replacedTabId,
        tabId: tabId,
        timeStamp: timeStamp,
      );