onCheckboxListTile method

CheckboxListTile onCheckboxListTile({
  1. bool? value,
  2. ValueChanged<bool>? onChanged,
  3. Color? activeColor,
  4. Widget? title,
  5. Widget? subtitle,
  6. bool? isThreeLine,
  7. bool? dense,
  8. Widget? secondary,
  9. bool? selected,
  10. 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;
}