AntdBaseCheckbox<Style extends AntdCheckboxStyle, WidgetType> constructor

const AntdBaseCheckbox<Style extends AntdCheckboxStyle, WidgetType>({
  1. Key? key,
  2. Style? style,
  3. AntdStyleBuilder<Style, WidgetType>? styleBuilder,
  4. bool? disabled,
  5. bool? readOnly,
  6. bool? value,
  7. bool? autoCollect = true,
  8. ValueChanged<bool?>? onChange,
  9. bool? indeterminate,
  10. Widget? extra,
  11. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
})

Implementation

const AntdBaseCheckbox(
    {super.key,
    super.style,
    super.styleBuilder,
    super.disabled,
    super.readOnly,
    super.value,
    super.autoCollect,
    super.onChange,
    this.indeterminate,
    this.extra,
    this.hapticFeedback = AntdHapticFeedback.light});