SetTitleDetails constructor
Implementation
SetTitleDetails({
/// The id of the tab for which you want to modify the page action.
required int tabId,
/// The tooltip string.
required String title,
}) : _wrapped = $js.SetTitleDetails(
tabId: tabId,
title: title,
);