AntdCheckItem constructor

const AntdCheckItem({
  1. Key? key,
  2. AntdCheckItemStyle? style,
  3. AntdStyleBuilder<AntdCheckItemStyle, AntdCheckItem>? styleBuilder,
  4. bool? disabled,
  5. bool? readOnly,
  6. dynamic value,
  7. bool? autoCollect = true,
  8. ValueChanged? onChange,
  9. bool? shouldTriggerChange = true,
  10. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
  11. bool? manual,
  12. Widget? child,
  13. VoidCallback? onTap,
  14. Widget? activeIcon,
  15. Widget? unActiveIcon,
  16. Widget? disableIcon,
})

Implementation

const AntdCheckItem(
    {super.key,
    super.style,
    super.styleBuilder,
    super.disabled,
    super.readOnly,
    super.value,
    super.autoCollect,
    super.onChange,
    super.shouldTriggerChange,
    super.hapticFeedback,
    super.manual,
    this.child,
    this.onTap,
    this.activeIcon,
    this.unActiveIcon,
    this.disableIcon});