CheckBoxButton constructor

const CheckBoxButton({
  1. Key? key,
  2. required bool isChecked,
  3. dynamic onChanged(
    1. bool isChecked
    )?,
  4. bool clickable = true,
})

Implementation

const CheckBoxButton(
    {Key? key,
    required this.isChecked,
    this.onChanged,
    this.clickable = true})
    : super(key: key);