XCheckBoxWidget constructor

XCheckBoxWidget({
  1. String labelCheckBox = "",
  2. Color? colorTitle,
  3. TextStyle? styleLabel,
  4. Color? checkColor,
  5. bool valueCheckBox = false,
  6. dynamic onChangedCheckBox(
    1. bool?
    )?,
  7. bool verticalCheckBoxWidget = false,
  8. dynamic onTap()?,
  9. bool? labelOnBottom = false,
})

Implementation

XCheckBoxWidget({
  this.labelCheckBox = "",
  this.colorTitle,
  this.styleLabel,
  this.checkColor,
  this.valueCheckBox = false,
  this.onChangedCheckBox,
  this.verticalCheckBoxWidget = false,
  this.onTap,
  this.labelOnBottom = false,
});