AntdCheckItem constructor

const AntdCheckItem({
  1. Key? key,
  2. AntdCheckItemStyle? style,
  3. AntdStyleBuilder<AntdCheckItemStyle, AntdCheckItem>? styleBuilder,
  4. Widget? child,
  5. VoidCallback? onTap,
  6. bool? readOnly,
  7. bool? disable,
  8. Widget? activeIcon,
  9. Widget? unActiveIcon,
  10. Widget? disableIcon,
  11. String? value,
  12. bool? check,
  13. AntdCheckItemChange? onChange,
})

Implementation

const AntdCheckItem(
    {super.key,
    super.style,
    super.styleBuilder,
    this.child,
    this.onTap,
    this.readOnly,
    this.disable,
    this.activeIcon,
    this.unActiveIcon,
    this.disableIcon,
    this.value,
    this.check,
    this.onChange});