ConfigSectionWidget constructor

const ConfigSectionWidget({
  1. Key? key,
  2. required String title,
  3. required IconData icon,
  4. required List<Widget> children,
  5. bool initiallyExpanded = true,
  6. Color? iconColor,
})

Implementation

const ConfigSectionWidget({
  super.key,
  required this.title,
  required this.icon,
  required this.children,
  this.initiallyExpanded = true,
  this.iconColor,
});