tasks property
Array of TaskInfos representing the tasks running on this process.
Implementation
List<TaskInfo> get tasks => _wrapped.tasks.toDart
.cast<$js.TaskInfo>()
.map((e) => TaskInfo.fromJS(e))
.toList();
Array of TaskInfos representing the tasks running on this process.
List<TaskInfo> get tasks => _wrapped.tasks.toDart
.cast<$js.TaskInfo>()
.map((e) => TaskInfo.fromJS(e))
.toList();