DigitCheckboxTile constructor

const DigitCheckboxTile({
  1. bool value = false,
  2. required String label,
  3. ValueChanged<bool>? onChanged,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. Key? key,
})

Implementation

const DigitCheckboxTile({
  this.value = false,
  required this.label,
  this.onChanged,
  this.padding,
  this.margin,
  super.key,
});