ExpandableItem constructor

ExpandableItem({
  1. required IconData icon,
  2. required VoidCallback onTap,
  3. String? label,
  4. Color backgroundColor = Colors.white,
  5. Color foregroundColor = Colors.black,
})

Implementation

ExpandableItem({
  required this.icon,
  required this.onTap,
  this.label,
  this.backgroundColor = Colors.white,
  this.foregroundColor = Colors.black,
});