BasicExpansion constructor

const BasicExpansion({
  1. Key? key,
  2. String? title,
  3. Widget? customTitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. List<Widget> children = const [],
  7. Color? color,
  8. Color? collapsedTextColor,
  9. Color? collapsedIconColor,
  10. Color? iconColor,
  11. EdgeInsetsGeometry? childrenPadding,
  12. BoxBorder? border,
  13. BorderRadiusGeometry? borderRadius,
  14. CrossAxisAlignment? expandedCrossAxisAlignment,
})

Implementation

const BasicExpansion({
  Key? key,
  this.title,
  this.customTitle,
  this.leading,
  this.trailing,
  this.children = const [],
  this.color,
  this.collapsedTextColor,
  this.collapsedIconColor,
  this.iconColor,
  this.childrenPadding,
  this.border,
  this.borderRadius,
  this.expandedCrossAxisAlignment,
}) : super(key: key);