expandSection method

void expandSection(
  1. K sectionKey, {
  2. bool animate = true,
})

Implementation

void expandSection(K sectionKey, {bool animate = true}) {
  _checkNotDisposed();
  _requireSection(sectionKey, "expandSection");
  _tree.expand(key: SectionKey<K>(sectionKey), animate: animate);
}