isExpanded method

bool isExpanded(
  1. String nodeId
)

Check if a node is currently expanded.

Implementation

bool isExpanded(String nodeId) => nodeMap[nodeId]?.isExpanded ?? false;