FastExpansionPanel constructor
const
FastExpansionPanel({
- Key? key,
- required WidgetBuilder bodyBuilder,
- Duration animationDuration = const Duration(milliseconds: 300),
- String? titleText,
- bool isExpanded = false,
- bool isEnabled = true,
- Color? titleTextColor,
- Widget? headerIcon,
- GestureTapCallback? onTap,
Implementation
const FastExpansionPanel({
super.key,
required this.bodyBuilder,
this.animationDuration = const Duration(milliseconds: 300),
this.titleText,
this.isExpanded = false,
this.isEnabled = true,
this.titleTextColor,
this.headerIcon,
this.onTap,
});