SuffaCheckBox constructor

const SuffaCheckBox({
  1. Key? key,
  2. required String text,
  3. required bool checkState,
  4. required dynamic onChanged(
    1. bool
    ),
  5. double? fontSize,
  6. bool? paddingState,
  7. Color? activeColor,
  8. Color? checkColor,
  9. TextStyle? textFont,
  10. Color? textColor,
  11. double? textSize,
})

Implementation

const SuffaCheckBox({
  super.key,
  required this.text,
  required this.checkState,
  required this.onChanged,
  this.fontSize,
  this.paddingState,
  this.activeColor,
  this.checkColor,
  this.textFont,
  this.textColor,
  this.textSize,
});