DigitCheckbox constructor

const DigitCheckbox({
  1. Key? key,
  2. required String label,
  3. ValueChanged<bool?>? onChanged,
  4. bool value = false,
  5. EdgeInsetsGeometry padding = const EdgeInsets.only(left: 4.0),
})

Implementation

const DigitCheckbox({
  super.key,
  required this.label,
  this.onChanged,
  this.value = false,
  this.padding = const EdgeInsets.only(left: 4.0),
});