MiniCheckbox constructor

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

Implementation

const MiniCheckbox({
  super.key,
  required this.value,
  this.onChanged,
  this.label,
  this.disabled = false,
});