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,
  9. bool fitted = true,
  10. double fittedTextWidth = 500,
  11. bool detailsSpacing = true,
})

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,
  this.fitted = true,
  this.fittedTextWidth = 500,
  this.detailsSpacing = true,
});