ExpandChildWidget constructor
const
ExpandChildWidget({
- Key? key,
- String? collapsedHint,
- String? expandedHint,
- EdgeInsets? arrowPadding,
- Color? arrowColor,
- double arrowSize = 30,
- IconData? icon,
- TextStyle? hintTextStyle,
- ExpandArrowStyle expandArrowStyle = ExpandArrowStyle.icon,
- bool capitalArrowtext = true,
- bool expand = false,
- Duration animationDuration = _kExpand,
- Widget? child,
- bool hideArrowOnExpanded = false,
Implementation
const ExpandChildWidget({
Key? key,
this.collapsedHint,
this.expandedHint,
this.arrowPadding,
this.arrowColor,
this.arrowSize = 30,
this.icon,
this.hintTextStyle,
this.expandArrowStyle = ExpandArrowStyle.icon,
this.capitalArrowtext = true,
this.expand = false,
this.animationDuration = _kExpand,
this.child,
this.hideArrowOnExpanded = false,
}) : assert(hideArrowOnExpanded != null),
super(key: key);