ClueCheckListTile constructor

const ClueCheckListTile({
  1. Key? key,
  2. required String title,
  3. bool? initValue,
  4. required Function onChanged,
  5. SvgPicture? checkboxOn,
  6. SvgPicture? checkboxOff,
})

Creates a CLUeCheckListTile.

title is the text to be displayed. initValue is the initial checked state. onChanged is the callback function when the checked state changes.

Implementation

const ClueCheckListTile({
  super.key,
  required this.title,
  this.initValue,
  required this.onChanged,
  this.checkboxOn,
  this.checkboxOff,
});