BasicCheckbox constructor

const BasicCheckbox({
  1. required bool value,
  2. required ValueChanged<bool?> onChanged,
  3. bool isError = false,
  4. String? semanticLabel,
  5. Key? key,
})

Implementation

const BasicCheckbox({
  required this.value,
  required this.onChanged,
  this.isError = false,
  this.semanticLabel,
  super.key,
});