isExpanded method

bool isExpanded(
  1. V? nodeValue
)

获取节点展开状态

Implementation

bool isExpanded(V? nodeValue) {
  return _expandedStates[nodeValue] ?? false;
}