onCheckboxListTile method
CheckboxListTile
onCheckboxListTile(
{ - bool? value,
- ValueChanged<bool>? onChanged,
- Color? activeColor,
- Widget? title,
- Widget? subtitle,
- bool? isThreeLine,
- bool? dense,
- Widget? secondary,
- bool? selected,
- ListTileControlAffinity? controlAffinity,
})
Implementation
CheckboxListTile onCheckboxListTile({
bool? value,
ValueChanged<bool>? onChanged,
Color? activeColor,
Widget? title,
Widget? subtitle,
bool? isThreeLine,
bool? dense,
Widget? secondary,
bool? selected,
ListTileControlAffinity? controlAffinity,
}) {
_checkValue = value ?? _checkValue;
toggle = onChanged ?? toggle;
this.activeColor = activeColor ?? this.activeColor;
this.title = title ?? this.title;
this.subtitle = subtitle ?? this.subtitle;
this.isThreeLine = isThreeLine ?? this.isThreeLine;
this.dense = dense ?? this.dense;
this.secondary = secondary ?? this.secondary;
this.selected = selected ?? this.selected;
this.controlAffinity = controlAffinity ?? this.controlAffinity;
return checkboxListTile;
}