CheckboxUic constructor

const CheckboxUic({
  1. Key? key,
  2. bool initialValue = false,
  3. String title = '',
  4. String? titleUnchecked,
  5. TextStyle? titleTextStyle,
  6. String? description,
  7. String? descriptionUnchecked,
  8. TextStyle? descriptionTextStyle,
  9. Widget? descriptionView,
  10. Widget? descriptionViewUnchecked,
  11. bool tristate = false,
  12. ValueChanged<bool?>? onChanged,
  13. Color? activeColor,
  14. Color? checkColor,
  15. Color? focusColor,
  16. Color? hoverColor,
  17. MaterialTapTargetSize? materialTapTargetSize,
  18. FocusNode? focusNode,
  19. bool autofocus = false,
})

Implementation

const CheckboxUic({
  Key? key,
  this.initialValue = false,
  this.title = '',
  this.titleUnchecked,
  this.titleTextStyle,
  this.description,
  this.descriptionUnchecked,
  this.descriptionTextStyle,
  this.descriptionView,
  this.descriptionViewUnchecked,
  //
  this.tristate = false,
  this.onChanged,
  this.activeColor,
  this.checkColor,
  this.focusColor,
  this.hoverColor,
  this.materialTapTargetSize,
  this.focusNode,
  this.autofocus = false,
}) : super(key: key);