allSectionKeys property

List<K> get allSectionKeys

All section keys in render order, INCLUDING pending-deletion.

Implementation

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