OnTabReplacedDetails constructor
OnTabReplacedDetails({})
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,
);