effectivePanelHeight property
double
get
effectivePanelHeight
Implementation
double get effectivePanelHeight => _isHorizontalExpand
? currentPanelWidth.value + (currentBorderWidth.value * 2)
: (panelState.value == PanelState.expanded
? currentPanelWidth.value * (items.length + 1) +
currentBorderWidth.value
: currentPanelWidth.value + (currentBorderWidth.value * 2));