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