Control.group constructor
Implementation
factory Control.group({
required List<Control> settings,
String? title,
Widget? prefixIcon,
}) =>
Control(
type: ControlType.group,
key: 'group_$title',
settings: settings,
title: title,
prefixIcon: prefixIcon,
);