CheckBoxWidget constructor

const CheckBoxWidget({
  1. Key? key,
  2. required VoidCallbackWithValue<bool>? onChanged,
  3. bool isSelected = false,
  4. String? title,
  5. String? semanticLabel,
  6. String? semanticHint,
})

Implementation

const CheckBoxWidget({
  super.key,
  required this.onChanged,
  this.isSelected = false,
  this.title,
  this.semanticLabel,
  this.semanticHint,
});