sectionKeys property

List<K> get sectionKeys

Section keys in render order, EXCLUDING pending-deletion.

Implementation

List<K> get sectionKeys {
  _checkNotDisposed();
  return <K>[
    for (final k in _tree.liveRootKeys)
      if (_assertIsSection(k)) (k as SectionKey<K>).value,
  ];
}