SetTitleDetails constructor
Implementation
SetTitleDetails({
/// The string the action should display when moused over.
required String title,
/// Limits the change to when a particular tab is selected. Automatically
/// resets when the tab is closed.
int? tabId,
}) : _wrapped = $js.SetTitleDetails(
title: title,
tabId: tabId,
);