ClueCheckListTile constructor
const
ClueCheckListTile({})
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,
});