AntdCheckboxGroup<T> constructor

const AntdCheckboxGroup<T>({
  1. Key? key,
  2. bool? disabled,
  3. bool? readOnly,
  4. List<T>? value,
  5. bool? autoCollect = true,
  6. ValueChanged<List<T>?>? onChange,
  7. bool? shouldTriggerChange = true,
  8. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
  9. bool? manual,
  10. List<AntdCheckbox>? items,
  11. Widget? builder(
    1. List<AntdCheckbox>? items
    )?,
})

Implementation

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