TToggleBox constructor

const TToggleBox({
  1. Key? key,
  2. required String caption,
  3. bool checked = false,
  4. bool enabled = true,
  5. void onChange(
    1. bool checked
    )?,
})

Implementation

const TToggleBox({
  super.key,
  required this.caption,
  this.checked = false,
  this.enabled = true,
  this.onChange,
});