SetTitleDetails constructor

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

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