QueryInfo constructor
Implementation
QueryInfo({
/// Whether the groups are collapsed.
bool? collapsed,
/// The color of the groups.
Color? color,
/// Match group titles against a pattern.
String? title,
/// The ID of the parent window, or [windows.WINDOW_ID_CURRENT] for the
/// [current window](windows#current-window).
int? windowId,
}) : _wrapped = $js.QueryInfo(
collapsed: collapsed,
color: color?.toJS,
title: title,
windowId: windowId,
);