SetTitleDetails constructor

SetTitleDetails({
  1. required int tabId,
  2. required String title,
})

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,
      );