TUICheckBox constructor

const TUICheckBox({
  1. Key? key,
  2. TUICheckBoxState state = TUICheckBoxState.unchecked,
  3. bool? enableMixedState,
  4. dynamic onChanged(
    1. TUICheckBoxState
    )?,
})

Implementation

const TUICheckBox({
  super.key,
  this.state = TUICheckBoxState.unchecked,
  this.enableMixedState,
  this.onChanged,
});