CheckBoxButton constructor

CheckBoxButton({
  1. bool disabled = false,
  2. Key? key,
  3. double? size,
  4. bool onlyShow = false,
  5. required bool isChecked,
  6. dynamic onChanged(
    1. bool isChecked
    )?,
})

Implementation

CheckBoxButton(
    {this.disabled = false,
    Key? key,
    this.size,
    this.onlyShow = false,
    required this.isChecked,
    this.onChanged})
    : super(key: key);