CustomListTile constructor
const
CustomListTile({
- Key? key,
- required String title,
- required IconData icon,
- List<
Widget> ? children, - bool? isSelected,
- bool? isExpanded = true,
- bool? itemExpanded,
- VoidCallback? onTap,
- Color? selectedColor,
- Color? iconBagroundColor,
- Color? hoverColor,
- Color? iconColor,
- Color? textColor,
- bool enableAnimation = true,
- bool showOverlay = false,
Implementation
const CustomListTile({
super.key,
required this.title,
required this.icon,
this.children,
this.isSelected,
this.isExpanded = true,
this.itemExpanded,
this.onTap,
this.selectedColor,
this.iconBagroundColor,
this.hoverColor,
this.iconColor,
this.textColor,
this.enableAnimation = true,
this.showOverlay = false,
});