CheckboxIcon constructor

const CheckboxIcon({
  1. Key? key,
  2. bool value = false,
})

Implementation

const CheckboxIcon({
  super.key,
  this.value = false,
});