CheckBoxItem constructor

const CheckBoxItem({
  1. Key? key,
  2. required bool isSelected,
  3. required dynamic onChanged(
    1. bool
    )?,
  4. Widget? widget,
  5. String? title,
  6. CheckBoxItemType type = CheckBoxItemType.box,
  7. bool showBorder = true,
  8. double spaceContent = 4.44,
})

Implementation

const CheckBoxItem({
  super.key,
  required this.isSelected,
  required this.onChanged,
  this.widget,
  this.title,
  this.type = CheckBoxItemType.box,
  this.showBorder = true,
  this.spaceContent = 4.44,
});