CellRadioListTile<T> constructor

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

Implementation

const CellRadioListTile({
  super.key,
  this.enabled = const ValueCell.value(true),
  required this.value,
  required this.groupValue,
  this.mouseCursor,
  this.toggleable = const ValueCell.value(false),
  this.activeColor,
  this.fillColor,
  this.hoverColor,
  this.overlayColor,
  this.splashRadius,
  this.materialTapTargetSize,
  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.autofocus = const ValueCell.value(false),
  this.contentPadding,
  this.shape,
  this.tileColor,
  this.selectedTileColor,
  this.visualDensity,
  this.focusNode,
  this.onFocusChange,
  this.enableFeedback,
});