FittedCheckBox constructor

const FittedCheckBox({
  1. Key? key,
  2. double? size,
  3. bool? initValue,
  4. dynamic onSelected(
    1. bool?
    )?,
  5. Color? borderColor,
})

Implementation

const FittedCheckBox({
  super.key,
  this.size,
  this.initValue,
  this.onSelected,
  this.borderColor,
});