UpdateProperties constructor

UpdateProperties({
  1. bool? collapsed,
  2. Color? color,
  3. String? title,
})

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