OudsCheckbox constructor

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

Implementation

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