FollyMenuGroup constructor

const FollyMenuGroup({
  1. required List<Widget> items,
  2. String? label,
  3. IconData? iconData,
  4. bool initialExpanded = false,
  5. ExpandableController? controller,
  6. Color? color,
  7. Color backgroundColor = Colors.transparent,
  8. Key? key,
})

Implementation

const FollyMenuGroup({
  required this.items,
  this.label,
  this.iconData,
  this.initialExpanded = false,
  this.controller,
  this.color,
  this.backgroundColor = Colors.transparent,
  super.key,
});