GNExpansionTile constructor

const GNExpansionTile({
  1. Key? key,
  2. bool? enabled,
  3. bool? showTrailingIcon,
  4. Color? backgroundColor,
  5. Color? collapsedBackgroundColor,
  6. EdgeInsets? tilePadding,
  7. EdgeInsets? childrenPadding,
  8. double? borderRadius,
  9. required List<Widget> expandedWidget,
  10. required Widget tileTitle,
  11. dynamic onExpansionChanged(
    1. bool status
    )?,
  12. Color? iconColor,
  13. ExpansionTileController? controller,
  14. Color? borderColor,
  15. Color? collapsedBorderColor,
  16. bool? initiallyExpanded,
  17. Color? collapsedIconColor,
})

Implementation

const GNExpansionTile(
    {super.key,
    this.enabled,
    this.showTrailingIcon,
    this.backgroundColor,
    this.collapsedBackgroundColor,
    this.tilePadding,
    this.childrenPadding,
    this.borderRadius,
    required this.expandedWidget,
    required this.tileTitle,
    this.onExpansionChanged,
    this.iconColor,
    this.controller,
    this.borderColor,
    this.collapsedBorderColor,
    this.initiallyExpanded, this.collapsedIconColor});