widget method
Implementation
widget(context) => Builder(
builder: (context) => Theme(
data: Theme.of(context).copyWith(
splashColor: splashColor,
highlightColor: highlightColor,
hoverColor: hoverColor,
focusColor: focusColor,
),
child: CheckboxListTile(
key: key,
value: value,
onChanged: onChanged,
activeColor: activeColor,
checkColor: checkColor,
tileColor: tileColor,
title: title,
subtitle: subtitle,
isThreeLine: isThreeLine ?? false,
dense: dense,
secondary: secondary,
selected: selected ?? false,
controlAffinity:
controlAffinity ?? ListTileControlAffinity.platform,
autofocus: autofocus ?? false,
contentPadding: contentPadding?.value,
tristate: tristate ?? false,
shape: shape,
selectedTileColor: selectedTileColor,
visualDensity: visualDensity,
focusNode: focusNode,
enableFeedback: enableFeedback,
),
),
);