FastExpansionPanel constructor

const FastExpansionPanel({
  1. Key? key,
  2. required WidgetBuilder bodyBuilder,
  3. Duration animationDuration = const Duration(milliseconds: 300),
  4. IconData headerIcon = Icons.expand_more,
  5. String titleText = kFastPanelText,
  6. bool isExpanded = false,
  7. bool isEnabled = true,
  8. Color? titleTextColor,
  9. GestureTapCallback? onTap,
})

Implementation

const FastExpansionPanel({
  Key? key,
  required this.bodyBuilder,
  this.animationDuration = const Duration(milliseconds: 300),
  this.headerIcon = Icons.expand_more,
  this.titleText = kFastPanelText,
  this.isExpanded = false,
  this.isEnabled = true,
  this.titleTextColor,
  this.onTap,
}) : super(key: key);