CellCheckboxListTile constructor

const CellCheckboxListTile({
  1. Key? key,
  2. required MutableCell<bool?> value,
  3. ValueCell<MouseCursor?>? mouseCursor,
  4. ValueCell<Color?>? activeColor,
  5. ValueCell<WidgetStateProperty<Color?>?>? fillColor,
  6. ValueCell<Color?>? checkColor,
  7. ValueCell<Color?>? hoverColor,
  8. ValueCell<WidgetStateProperty<Color?>?>? overlayColor,
  9. ValueCell<double?>? splashRadius,
  10. ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
  11. ValueCell<VisualDensity?>? visualDensity,
  12. ValueCell<FocusNode?>? focusNode,
  13. ValueCell<bool> autofocus = const ValueCell.value(false),
  14. ValueCell<ShapeBorder?>? shape,
  15. ValueCell<BorderSide?>? side,
  16. ValueCell<bool> isError = const ValueCell.value(false),
  17. ValueCell<bool?>? enabled,
  18. ValueCell<Color?>? tileColor,
  19. ValueCell<Widget?>? title,
  20. ValueCell<Widget?>? subtitle,
  21. ValueCell<bool> isThreeLine = const ValueCell.value(false),
  22. ValueCell<bool?>? dense,
  23. ValueCell<Widget?>? secondary,
  24. ValueCell<bool> selected = const ValueCell.value(false),
  25. ValueCell<ListTileControlAffinity> controlAffinity = const ValueCell.value(ListTileControlAffinity.platform),
  26. ValueCell<EdgeInsetsGeometry?>? contentPadding,
  27. ValueCell<bool> tristate = const ValueCell.value(false),
  28. ValueCell<OutlinedBorder?>? checkboxShape,
  29. ValueCell<Color?>? selectedTileColor,
  30. ValueCell<void Function(bool)?>? onFocusChange,
  31. ValueCell<bool?>? enableFeedback,
  32. ValueCell<String?>? checkboxSemanticLabel,
})

Implementation

const CellCheckboxListTile({
  super.key,
  required this.value,
  this.mouseCursor,
  this.activeColor,
  this.fillColor,
  this.checkColor,
  this.hoverColor,
  this.overlayColor,
  this.splashRadius,
  this.materialTapTargetSize,
  this.visualDensity,
  this.focusNode,
  this.autofocus = const ValueCell.value(false),
  this.shape,
  this.side,
  this.isError = const ValueCell.value(false),
  this.enabled,
  this.tileColor,
  this.title,
  this.subtitle,
  this.isThreeLine = const ValueCell.value(false),
  this.dense,
  this.secondary,
  this.selected = const ValueCell.value(false),
  this.controlAffinity =
      const ValueCell.value(ListTileControlAffinity.platform),
  this.contentPadding,
  this.tristate = const ValueCell.value(false),
  this.checkboxShape,
  this.selectedTileColor,
  this.onFocusChange,
  this.enableFeedback,
  this.checkboxSemanticLabel,
});