Control.group constructor

Control.group({
  1. required List<Control> settings,
  2. String? title,
  3. Widget? prefixIcon,
})

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