AntdFormItemGroup<ChildType, Style extends AntdStyle, T, WidgetType> constructor

const AntdFormItemGroup<ChildType, Style extends AntdStyle, T, WidgetType>({
  1. Key? key,
  2. Style? style,
  3. AntdStyleBuilder<Style, WidgetType>? styleBuilder,
  4. bool? disabled,
  5. bool? readOnly,
  6. T? value,
  7. bool? autoCollect = true,
  8. ValueChanged<T?>? onChange,
  9. bool? shouldTriggerChange = true,
  10. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
  11. bool? manual,
  12. List<ChildType>? items,
  13. Widget? builder(
    1. List<ChildType>? items
    )?,
})

Implementation

const AntdFormItemGroup(
    {super.key,
    super.style,
    super.styleBuilder,
    super.disabled,
    super.readOnly,
    super.value,
    super.autoCollect,
    super.onChange,
    super.shouldTriggerChange,
    super.hapticFeedback,
    super.manual,
    this.items,
    this.builder});