XCheckBoxWidget constructor

XCheckBoxWidget({
  1. String label = "",
  2. Color? label_Color,
  3. TextStyle? label_Style,
  4. Color? checkColor,
  5. Color? activeColor,
  6. bool value = false,
  7. dynamic onChanged(
    1. bool?
    )?,
  8. bool verticalCheckBoxWidget = false,
  9. dynamic onTap()?,
  10. bool? label_OnBottom = false,
})

Implementation

XCheckBoxWidget({
  this.label = "",
  this.label_Color,
  this.label_Style,
  this.checkColor,
  this.activeColor,
  this.value = false,
  this.onChanged,
  this.verticalCheckBoxWidget = false,
  this.onTap,
  this.label_OnBottom = false,
});