CheckBox constructor

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

Implementation

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