CheckboxListTile constructor

const CheckboxListTile({
  1. Key? key,
  2. required bool? checked,
  3. ValueChanged<bool?>? onChanged,
  4. Widget? title,
  5. Widget? subtitle,
  6. Widget? opposite,
  7. bool isThreeLine = false,
  8. CheckboxThemeData? style,
  9. bool autofocus = false,
  10. FocusNode? focusNode,
  11. ButtonState<Color>? tileColor,
  12. ButtonState<ShapeBorder>? shape,
})

Implementation

const CheckboxListTile({
  Key? key,
  required this.checked,
  this.onChanged,
  this.title,
  this.subtitle,
  this.opposite,
  this.isThreeLine = false,
  this.style,
  this.autofocus = false,
  this.focusNode,
  this.tileColor,
  this.shape,
}) : super(key: key);