ExpandIndicator constructor

const ExpandIndicator({
  1. Key? key,
  2. required Animation<double> animation,
  3. required ExpandIndicatorStyle expandIndicatorStyle,
  4. VoidCallback? onTap,
  5. String? collapsedHint,
  6. String? expandedHint,
  7. EdgeInsets? padding,
  8. Color? iconColor,
  9. double? iconSize,
  10. IconData? icon,
  11. TextStyle? hintTextStyle,
  12. bool capitalizeHintText = true,
})

Implementation

const ExpandIndicator({
  super.key,
  required this.animation,
  required this.expandIndicatorStyle,
  this.onTap,
  this.collapsedHint,
  this.expandedHint,
  this.padding,
  this.iconColor,
  this.iconSize,
  this.icon,
  this.hintTextStyle,
  this.capitalizeHintText = true,
});