IdsCheckbox constructor

const IdsCheckbox({
  1. Key? key,
  2. required bool checked,
  3. required ValueChanged<bool>? onChanged,
  4. bool indeterminate = false,
  5. bool disabled = false,
  6. bool invalid = false,
  7. IdsSize size = IdsSize.standard,
  8. String? semanticLabel,
})

Implementation

const IdsCheckbox({
  super.key,
  required this.checked,
  required this.onChanged,
  this.indeterminate = false,
  this.disabled = false,
  this.invalid = false,
  this.size = IdsSize.standard,
  this.semanticLabel,
});