CheckBox constructor

const CheckBox({
  1. Key? key,
  2. bool? value = false,
  3. required CheckBoxStateBuilder builder,
  4. bool tristate = false,
  5. ValueChanged<bool?>? onChanged,
  6. Decoration? decoration,
  7. EdgeInsetsGeometry? margin,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const CheckBox({
  super.key,
  this.value = false,
  required this.builder,
  this.tristate = false,
  this.onChanged,
  this.decoration,
  this.margin,
  this.padding,
});