CustomExpandableTile constructor

const CustomExpandableTile({
  1. Key? key,
  2. required String title,
  3. required IconData? icon,
  4. List<Widget>? children,
  5. bool? isExpanded = false,
  6. bool enableAnimation = true,
  7. bool? isSelected = false,
  8. Color? selectedColor,
  9. Color? hoverColor,
  10. VoidCallback? onTap,
})

Implementation

const CustomExpandableTile({
  super.key,
  required this.title,
  required this.icon,
  this.children,
  this.isExpanded = false,
  this.enableAnimation = true,
  this.isSelected = false,
  this.selectedColor,
  this.hoverColor,
  this.onTap,
});