TaskInfo constructor

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

Implementation

TaskInfo({
  /// The title of the task.
  required String title,

  /// Optional tab ID, if this task represents a tab running on a renderer
  /// process.
  int? tabId,
}) : _wrapped = $js.TaskInfo(
        title: title,
        tabId: tabId,
      );