CheckBoxDialogRF constructor

CheckBoxDialogRF({
  1. Object? model,
  2. String title = "CheckBox Dialog",
  3. String subTitle = "check your data",
  4. double fontSize = 16,
  5. String? field,
  6. String? value,
  7. bool enabled = true,
  8. Color? backgroundColor,
  9. Color? textColor,
  10. Color? checkBoxColor,
  11. double widgetHeight = 50,
  12. dynamic checkList,
  13. Color? borderColor,
  14. double? borderWidth,
  15. double? borderRadius,
  16. FontWeight? fontWeight,
  17. Function? onChange,
})

Implementation

CheckBoxDialogRF(
    {this.model,
    this.title = "CheckBox Dialog",
    this.subTitle = "check your data",
    this.fontSize = 16,
    this.field,
    this.value,
    this.enabled = true,
    this.backgroundColor,
    this.textColor,
    this.checkBoxColor,
    this.widgetHeight = 50,
    this.checkList,
    this.borderColor,
    this.borderWidth,
    this.borderRadius,
    this.fontWeight,
    this.onChange}) {}