toggleExpandAll method

void toggleExpandAll()

Implementation

void toggleExpandAll() {
  isAllExpanded ? collapseAll() : expandAll();
}