shouldShowExpandIcon property
bool
get
shouldShowExpandIcon
Implementation
bool get shouldShowExpandIcon {
if (alwaysHideExpandIcon) return false;
return (hasCustomExpandIcon && isExpanded)
? alwaysShowExpandIcon
: !disabled;
}