NbpCheckBox constructor

const NbpCheckBox({
  1. Key? key,
  2. OutlinedBorder? shape,
  3. dynamic onChanged(
    1. bool?
    )?,
  4. required bool value,
  5. required String title,
  6. TextStyle? textStyle,
  7. dynamic onTap()?,
  8. Color? activeColor,
  9. bool showUnderline = true,
  10. double? height,
  11. double? scale,
  12. Color? htmlCol,
  13. double? width,
  14. Color? checkCol,
  15. Color? borderCol,
  16. Color? fillCol,
})

Implementation

const NbpCheckBox({
  super.key,
  this.shape,
  this.onChanged,
  required this.value,
  required this.title,
  this.textStyle,
  this.onTap,
  this.activeColor,
  this.showUnderline = true,
  this.height,
  this.scale,
  this.htmlCol,
  this.width,
  this.checkCol,
  this.borderCol,
  this.fillCol,
});