ExpandableItem constructor
ExpandableItem({
- required IconData icon,
- required VoidCallback onTap,
- String? label,
- Color backgroundColor = Colors.white,
- Color foregroundColor = Colors.black,
Implementation
ExpandableItem({
required this.icon,
required this.onTap,
this.label,
this.backgroundColor = Colors.white,
this.foregroundColor = Colors.black,
});