expandAll method

void expandAll(
  1. List<Object> allKeys
)

Expands all nodes whose keys are in allKeys.

Implementation

void expandAll(List<Object> allKeys) {
  _expandedKeys = Set<Object>.from(allKeys);
  notifyListeners();
}