CheckBoxButton constructor

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

Implementation

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