CLCheckbox constructor

const CLCheckbox({
  1. Key? key,
  2. required bool? value,
  3. required ValueChanged<bool?>? onChanged,
  4. bool tristate = false,
  5. double scale = 0.9,
})

Implementation

const CLCheckbox({super.key, required this.value, required this.onChanged, this.tristate = false, this.scale = 0.9});