TodayCheckbox constructor

const TodayCheckbox({
  1. Key? key,
  2. String? label,
  3. String? description,
  4. TodayCheckboxValue value = TodayCheckboxValue.unchecked,
  5. bool contained = false,
  6. bool disabled = false,
  7. bool disableAutoUpdate = false,
  8. required Function onChanged,
})

Implementation

const TodayCheckbox({
  super.key,
  this.label,
  this.description,
  this.value = TodayCheckboxValue.unchecked,
  this.contained = false,
  this.disabled = false,
  this.disableAutoUpdate = false,
  required this.onChanged,
});