CustomCheckbox constructor
      const
      CustomCheckbox({})
     
    
    
Implementation
const CustomCheckbox({
  Key? key,
  required this.text,
  required this.linktext,
  required this.initialValue,
  required this.value,
  required this.onChanged,
  required this.valid,
  this.onTap,
}) : super(key: key);