NiceCheckbox constructor

const NiceCheckbox({
  1. Key? key,
  2. required bool? value,
  3. String? label,
  4. bool enabled = true,
  5. bool tristate = false,
  6. ValueChanged<bool?>? onChanged,
})

Implementation

const NiceCheckbox({
  super.key,
  required this.value,
  this.label,
  this.enabled = true,
  this.tristate = false,
  this.onChanged,
});