UpdateProperties constructor
Implementation
UpdateProperties({
/// Whether the group should be collapsed.
bool? collapsed,
/// The color of the group.
Color? color,
/// The title of the group.
String? title,
}) : _wrapped = $js.UpdateProperties(
collapsed: collapsed,
color: color?.toJS,
title: title,
);