expandAllComponents method

void expandAllComponents()

展开所有可折叠组件

Implementation

void expandAllComponents() {
  if (!isBound) {
    debugPrint('ClassLayoutController: Controller not bound to layout');
    return;
  }

  _state!.expandAllComponents();
  notifyListeners();
}